You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import InternalLayout, { Content, Footer, Header } from './layout';
|
|
|
|
import Sider from './Sider';
|
|
|
|
|
|
|
|
export { BasicProps as LayoutProps } from './layout';
|
|
|
|
export { SiderProps } from './Sider';
|
|
|
|
|
|
|
|
type InternalLayoutType = typeof InternalLayout;
|
|
|
|
|
|
|
|
interface LayoutType extends InternalLayoutType {
|
|
|
|
Header: typeof Header;
|
|
|
|
Footer: typeof Footer;
|
|
|
|
Content: typeof Content;
|
|
|
|
Sider: typeof Sider;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Layout = InternalLayout as LayoutType;
|
|
|
|
|
|
|
|
Layout.Header = Header;
|
|
|
|
Layout.Footer = Footer;
|
|
|
|
Layout.Content = Content;
|
|
|
|
Layout.Sider = Sider;
|
|
|
|
|
|
|
|
export default Layout;
|