diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-15 21:45:20 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-15 21:45:20 -0400 |
| commit | 3f7dd8ce0a0f11f894332a3b4351ecd7a9abd141 (patch) | |
| tree | 94800a7c641dc5f04dc49b291138baf85bb948be /src/components/Content.tsx | |
| parent | 15b007fddefecae48a3c736320770411d64bbb8f (diff) | |
| download | decky-lsfg-vk-3f7dd8ce0a0f11f894332a3b4351ecd7a9abd141.tar.gz decky-lsfg-vk-3f7dd8ce0a0f11f894332a3b4351ecd7a9abd141.zip | |
add clipboard web launch button
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 16c8f2f..c7c52a5 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 { @@ -109,6 +111,9 @@ export function Content() { )} <UsageInstructions config={config} /> + + <WikiButton /> + <ClipboardButton /> </PanelSection> ); } |
