2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-07-07 22:01:51 +01:00
|
|
|
import PageTitle from '../features/ui/util/page_title'
|
|
|
|
import IntroductionLayout from '../layouts/introduction_layout'
|
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
export default class IntroductionPage extends React.PureComponent {
|
2020-07-07 22:01:51 +01:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<IntroductionLayout>
|
|
|
|
<PageTitle path='Welcome to Gab' />
|
2020-08-14 18:45:59 +01:00
|
|
|
{this.props.children}
|
2020-07-07 22:01:51 +01:00
|
|
|
</IntroductionLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|