Boilerplate for /search
This commit is contained in:
27
src/scenes/Search/Search.js
Normal file
27
src/scenes/Search/Search.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import React from 'react';
|
||||
import { observer } from 'mobx-react';
|
||||
|
||||
import Flex from 'components/Flex';
|
||||
import Layout from 'components/Layout';
|
||||
import CenteredContent from 'components/CenteredContent';
|
||||
|
||||
@observer
|
||||
class Search extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Layout
|
||||
title="Search"
|
||||
titleText="Search"
|
||||
search={ false }
|
||||
>
|
||||
<CenteredContent>
|
||||
<Flex direction="column" flex={ true }>
|
||||
TBA
|
||||
</Flex>
|
||||
</CenteredContent>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Search;
|
||||
0
src/scenes/Search/Search.scss
Normal file
0
src/scenes/Search/Search.scss
Normal file
2
src/scenes/Search/index.js
Normal file
2
src/scenes/Search/index.js
Normal file
@@ -0,0 +1,2 @@
|
||||
import Search from './Search';
|
||||
export default Search;
|
||||
Reference in New Issue
Block a user