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…
Reference in a new issue