gab-social/app/javascript/gabsocial/pages/introduction_page.js

17 lines
376 B
JavaScript

import PageTitle from '../features/ui/util/page_title'
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}
</IntroductionLayout>
)
}
}