import { PluginManagerContext, SettingsCenterProvider } from '@nocobase/client'; import React, { useContext } from 'react'; import { Card } from 'antd'; const DuplicatorPanel = () => { return (
hello world
); }; export default function (props) { const ctx = useContext(PluginManagerContext); return ( {props.children} ); }