2019-11-01 09:28:05 +04:00
|
|
|
import React from 'react';
|
2019-11-06 18:20:09 +04:00
|
|
|
import DefaultLayout from 'layouts/default';
|
2019-11-08 10:22:30 +04:00
|
|
|
import SiteNav from 'components/site-nav';
|
2019-11-06 18:20:09 +04:00
|
|
|
import PageFooter from 'components/page-footer';
|
2019-11-01 09:28:05 +04:00
|
|
|
|
|
|
|
class GuideLayout extends React.Component {
|
|
|
|
render() {
|
|
|
|
const { children } = this.props;
|
|
|
|
|
|
|
|
return (
|
2019-11-02 12:45:15 +04:00
|
|
|
<DefaultLayout>
|
2019-11-08 10:22:30 +04:00
|
|
|
<SiteNav />
|
2019-11-02 12:45:15 +04:00
|
|
|
{ children }
|
|
|
|
<PageFooter />
|
|
|
|
</DefaultLayout>
|
2019-11-01 09:28:05 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 18:20:09 +04:00
|
|
|
export default GuideLayout;
|