forked from ddrilling/asb_cloud_front
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
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>)
|
|
} |