mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2026-05-18 14:40:19 +02:00
fix oops
This commit is contained in:
@@ -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 />,
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user