import {Box} from '@chakra-ui/react' import React from 'react' import {IPlugin, PluginStore} from 'react-pluggable' const Test = () => { return (

DASHBOARD

) } class PagesPlugin implements IPlugin { pluginStore!: PluginStore getPluginName(): string { // Do not change this because it is used in the migrations // When changing this, the migrations based on this plugin will not be // executed anymore. return 'JaenPages@0.0.1' } getDependencies(): string[] { return ['JaenUI@0.0.1'] } init(pluginStore: PluginStore): void { this.pluginStore = pluginStore } activate(): void {} deactivate(): void { // } } export default PagesPlugin