2021-07-01 16:01:50 -07:00
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
|
2021-07-01 16:01:50 -07:00
|
|
|
export default class DefaultPage extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { children } = this.props;
|
|
|
|
|
|
|
|
return (
|
2022-03-21 11:09:01 -07:00
|
|
|
<Layout>
|
|
|
|
<Layout.Sidebar />
|
2021-07-01 16:01:50 -07:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
<Layout.Main>
|
|
|
|
{children}
|
|
|
|
</Layout.Main>
|
2021-07-01 16:01:50 -07:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
<Layout.Aside />
|
|
|
|
</Layout>
|
2021-07-01 16:01:50 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|