forked from ddrilling/asb_cloud_front
16 lines
374 B
React
16 lines
374 B
React
|
import {Layout} from 'antd'
|
||
|
import PageHeader from './Header'
|
||
|
|
||
|
const {Content} = Layout
|
||
|
|
||
|
export default function LayoutPortal({title, children}) {
|
||
|
return (
|
||
|
<Content>
|
||
|
<PageHeader title={title}/>
|
||
|
<Layout>
|
||
|
<Content className="site-layout-background sheet">
|
||
|
{children}
|
||
|
</Content>
|
||
|
</Layout>
|
||
|
</Content>)
|
||
|
}
|