UNPKG

@difizen/mana-app

Version:

15 lines 479 B
import { ManaModule } from '@difizen/mana-core'; import { Toolbar, ToolbarFactory } from "./toolbar"; import 'rc-tooltip/assets/bootstrap.css'; import "./index.less"; export var ToolbarModule = ManaModule.create().register(Toolbar).register({ token: ToolbarFactory, useDynamic: function useDynamic(ctx) { return function () { var toolbar = ctx.container.get(Toolbar); return toolbar; }; } }); export * from "./toolbar"; export * from "./toolbar-render";