gab-social/app/javascript/gabsocial/pages/introduction_page.js
mgabdev 014e476b5d Updated pages, layout component structures
• Updated:
- pages, layout component structures
2020-08-14 12:45:59 -05:00

15 lines
350 B
JavaScript

import PageTitle from '../features/ui/util/page_title'
import IntroductionLayout from '../layouts/introduction_layout'
export default class IntroductionPage extends PureComponent {
render() {
return (
<IntroductionLayout>
<PageTitle path='Welcome to Gab' />
{this.props.children}
</IntroductionLayout>
)
}
}