Boilerplate for /search

This commit is contained in:
Jori Lallo
2016-07-17 20:59:32 -07:00
parent 50ea3439ea
commit e10e6fb548
7 changed files with 56 additions and 7 deletions

View 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;

View File

View File

@@ -0,0 +1,2 @@
import Search from './Search';
export default Search;