import { Button } from 'antd';
import { IUiApi } from 'umi-types'
export default (api: IUiApi) => {
const { callRemote } = api;
function PluginPanel() {
return (
);
}
api.addPanel({
title: '<%= name %>',
path: '/<%= name %>',
icon: 'home',
component: PluginPanel,
});
}