UNPKG

@ovine/core

Version:

Build flexible admin system with json.

13 lines (12 loc) 385 B
/** * TODO: * 1. 将预先设置的 HerderItem 项,都拆为独立组件,可以独自放于任何地方 */ import { LayoutCommProps, HeaderProps } from "./types"; declare type Props = LayoutCommProps & Partial<HeaderProps> & { children: any; themeNs: string; withRouteTabs: boolean; }; declare const _default: (props: Props) => JSX.Element; export default _default;