Updated GabTrendsController, ShopController to use Request instead of Net

• Updated:
- GabTrendsController, ShopController to use Request instead of Net
This commit is contained in:
mgabdev
2020-07-07 16:01:51 -05:00
parent 2ae611d7ed
commit 0fdf762815
5 changed files with 88 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
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>
)
}
}