This commit is contained in:
AAGaming 2022-05-28 23:19:40 -04:00
parent 6e73b27961
commit 8232080649
No known key found for this signature in database
GPG key ID: 3050166AC290BDF5

View file

@ -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 />,
};
});