Updated pages, layout component structures

• Updated:
- pages, layout component structures
This commit is contained in:
mgabdev
2020-08-14 12:45:59 -05:00
parent 67e1082cf5
commit 014e476b5d
23 changed files with 461 additions and 500 deletions

View File

@@ -4,12 +4,10 @@ import IntroductionLayout from '../layouts/introduction_layout'
export default class IntroductionPage extends PureComponent {
render() {
const { children } = this.props
return (
<IntroductionLayout>
<PageTitle path='Welcome to Gab' />
{children}
{this.props.children}
</IntroductionLayout>
)
}