UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

21 lines (20 loc) 492 B
import React from "react"; import Aside from "./Aside"; import Header from "./Header"; import Main from "./Main"; export interface ILayoutProps { [key: string]: any; /** * 子节点 */ children?: React.ReactNode; } /** * 布局组件用于搭建一个网站的基本框架。包含子组件 `Aside` `Header` `Main` */ declare const Layout: React.FC<ILayoutProps> & { Aside: typeof Aside; Header: typeof Header; Main: typeof Main; }; export default Layout;