2019-11-16 13:51:10 +04:00
|
|
|
import { FaqContainer } from './style';
|
|
|
|
import GuideBody from 'components/guide-body';
|
|
|
|
|
|
|
|
const AboutPage = require(`../../storage/pages/about.md`).default;
|
2019-10-19 22:49:47 +04:00
|
|
|
|
|
|
|
const FaqList = () => (
|
2019-11-02 17:50:57 +04:00
|
|
|
<FaqContainer className='border-top bg-light'>
|
2019-11-16 13:51:10 +04:00
|
|
|
<div className="container container-small">
|
|
|
|
<GuideBody>
|
|
|
|
<AboutPage />
|
|
|
|
</GuideBody>
|
|
|
|
</div>
|
2019-10-19 22:49:47 +04:00
|
|
|
</FaqContainer>
|
|
|
|
);
|
|
|
|
|
2019-11-16 13:51:10 +04:00
|
|
|
export default FaqList;
|