014e476b5d
• Updated: - pages, layout component structures
15 lines
350 B
JavaScript
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>
|
|
)
|
|
}
|
|
|
|
} |