mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-15 08:22:43 +00:00
11 lines
147 B
JavaScript
11 lines
147 B
JavaScript
var React = require('react');
|
|
|
|
var Logo = React.createClass({
|
|
render : function(){
|
|
return
|
|
<h2>{tool.name}</h2>
|
|
}
|
|
});
|
|
|
|
module.exports = Logo;
|