0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 08:32:41 +00:00

yay for waindows pathing

This commit is contained in:
Scott Tolksdorf
2016-05-06 14:29:44 -04:00
parent 8aef39a81e
commit cf8bcd2bb4
27 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
var React = require('react');
var Icon = require('naturalcrit/icon.svg.jsx');
var Logo = React.createClass({
getDefaultProps: function() {
return {
hoverSlide : false
};
},
render : function(){
return <a className='logo' {... this.props} href='/'>
<Icon />
<span className='name'>
Natural<span className='crit'>Crit</span>
</span>
</a>
}
});
module.exports = Logo;