mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-12-16 02:13:01 -06:00
fix oops
This commit is contained in:
parent
6e73b27961
commit
8232080649
1 changed files with 3 additions and 3 deletions
|
|
@ -66,8 +66,8 @@ const Content: VFC<{ serverAPI: ServerAPI }> = ({}) => {
|
||||||
|
|
||||||
export default definePlugin((serverApi: ServerAPI) => {
|
export default definePlugin((serverApi: ServerAPI) => {
|
||||||
return {
|
return {
|
||||||
title: () => <div className={staticClasses.Title}>Example Plugin</div>,
|
title: <div className={staticClasses.Title}>Example Plugin</div>,
|
||||||
content: () => <Content serverAPI={serverApi} />,
|
content: <Content serverAPI={serverApi} />,
|
||||||
icon: () => <FaShip />,
|
icon: <FaShip />,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue