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