mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-12-15 01:53:00 -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) => {
|
||||
return {
|
||||
title: () => <div className={staticClasses.Title}>Example Plugin</div>,
|
||||
content: () => <Content serverAPI={serverApi} />,
|
||||
icon: () => <FaShip />,
|
||||
title: <div className={staticClasses.Title}>Example Plugin</div>,
|
||||
content: <Content serverAPI={serverApi} />,
|
||||
icon: <FaShip />,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue