import UserActions
from 'actions/UserActions';
import UserStore
from 'stores/UserStore';
import Links
from 'components/Links';
/**
* Main website component. Contains a Links component for those
* who want to read more, for whatever reason.
* @extends {React.Component}
*/
class Website extends React.
Component {
constructor(
props) {
super(
props)
;
}
render() {
return (
<
div className="AppRoot">
<
Links
author="Michiel Sikma (michiel ♬ sikma ♪ org)"
github="https://github.com/msikma/"
twitter="https://twitter.com/michielsikma"
linkedin="https://www.linkedin.com/in/michielsikma"
npm="https://www.npmjs.com/~msikma"
current-employer="http://www.hidemyass.com/" />
<
p>I don't know what else to put here.</
p>
<
p>Colors are pretty.</
p>
</
div>
)
;
}
}
export default Website;
// (C) 2015, Michiel Sikma
.................................................................................