diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-10 17:37:22 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-10 17:37:22 -0500 |
| commit | 0a856a7d1ff9b6544a225724ebc5c641c6095f98 (patch) | |
| tree | 811d2b89e875e2168a8e691b9e19e364fb7d3f78 /src/index.tsx | |
| parent | f87044cb68b60e008b777c2359eb671cb09eb6a1 (diff) | |
| download | decky-bazzite-buddy-0a856a7d1ff9b6544a225724ebc5c641c6095f98.tar.gz decky-bazzite-buddy-0a856a7d1ff9b6544a225724ebc5c641c6095f98.zip | |
re breaking some stuff
Diffstat (limited to 'src/index.tsx')
| -rwxr-xr-x | src/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx index c787035..783914e 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,5 +1,6 @@ import { definePlugin } from "decky-frontend-lib"; import React from "react"; +import { FaGlobe } from "react-icons/fa"; // Example icon function Content() { return ( @@ -20,6 +21,8 @@ function Content() { export default definePlugin(() => { return { name: "WebPage Viewer", + title: <div>WebPage Viewer</div>, // Title shown in Decky + icon: <FaGlobe />, // Icon for the plugin content: <Content />, onDismount() {}, }; |
