summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-15 22:37:45 -0400
committerGitHub <noreply@github.com>2025-07-15 22:37:45 -0400
commit80247f76332d2704e21361192b774f31b1520e57 (patch)
tree6dacd61f372610c8734839343ac326c61554488e /src/components/Content.tsx
parent5fc11c1b263908e925014d86eb10649e7208b35b (diff)
parent2ad4b2a8d97b29710992e6859f3f50f6883649aa (diff)
downloaddecky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.tar.gz
decky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.zip
Merge pull request #25 from xXJSONDeruloXx/clipboard-workaround
Clipboard workaround
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index 16c8f2f..39de01b 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -6,6 +6,8 @@ import { StatusDisplay } from "./StatusDisplay";
import { InstallationButton } from "./InstallationButton";
import { ConfigurationSection } from "./ConfigurationSection";
import { UsageInstructions } from "./UsageInstructions";
+import { WikiButton } from "./WikiButton";
+import { ClipboardButton } from "./ClipboardButton";
export function Content() {
const {
@@ -79,13 +81,6 @@ export function Content() {
return (
<PanelSection>
- <StatusDisplay
- dllDetected={dllDetected}
- dllDetectionStatus={dllDetectionStatus}
- isInstalled={isInstalled}
- installationStatus={installationStatus}
- />
-
<InstallationButton
isInstalled={isInstalled}
isInstalling={isInstalling}
@@ -94,6 +89,13 @@ export function Content() {
onUninstall={onUninstall}
/>
+ <StatusDisplay
+ dllDetected={dllDetected}
+ dllDetectionStatus={dllDetectionStatus}
+ isInstalled={isInstalled}
+ installationStatus={installationStatus}
+ />
+
{/* Configuration Section - only show if installed */}
{isInstalled && (
<ConfigurationSection
@@ -109,6 +111,9 @@ export function Content() {
)}
<UsageInstructions config={config} />
+
+ <WikiButton />
+ <ClipboardButton />
</PanelSection>
);
}