@cainiaofe/cn-ui-layout
Version:
- 安装 cone-cli | [Cone-CLI 使用指引](https://alidocs.dingtalk.com/i/nodes/xdqZp24KneBJzvGM6XezJvyb7RA0Nr1E) - `tnpm i -g @alife/cone-cli@latest` - 安装依赖包 - `cone install` - 启动研发 - `cone start`
25 lines (24 loc) • 1.15 kB
TypeScript
import RefPage from './page/index';
import Header from './page/page-header';
import Aside from './page/aside';
import Content from './page/content';
import './index.scss';
type IPage = typeof RefPage & {
Header: typeof Header;
Aside: typeof Aside;
Content: typeof Content;
};
declare const CnLayoutPage: IPage;
export { Header as CnLayoutHeader, Aside as CnLayoutAside, Content as CnLayoutContent };
export { CnLayoutPage };
export { default as CnLayoutSection } from './section';
export { default as CnLayoutBlock } from './block';
export { default as CnLayoutRow } from './row';
export { default as CnLayoutCol } from './col';
export { default as CnLayoutCell } from './cell';
export type { CnLayoutPageProps } from './page/index';
export type { CnLayoutHeaderProps, IPageHeader } from './page/page-header';
export type { CnLayoutAsideProps, IPageAside } from './page/aside';
export type { CnLayoutContentProps, IPageContent } from './page/content';
export type { BreakPoint, BreakPoints, CnLayoutSectionProps, CnLayoutBlockProps, CnLayoutRowProps, CnLayoutColProps, CnLayoutCellProps, } from './types';
export default CnLayoutPage;