Created
November 23, 2015 19:55
-
-
Save michaltakac/12691f886800178195ae to your computer and use it in GitHub Desktop.
Meteorboard - home page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Component from 'react-pure-render/component'; | |
import React, {PropTypes} from 'react'; | |
export default class Page extends Component { | |
static propTypes = { | |
// ... | |
} | |
render() { | |
return ( | |
<div> | |
{/* There will be home page components */} | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment