mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-13 10:52:46 +00:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
var React = require('react');
|
|
var Nav = require('naturalcrit/nav/nav.jsx');
|
|
|
|
module.exports = function(props){
|
|
return <Nav.item
|
|
{...props}
|
|
newTab={true}
|
|
href='https://github.com/stolksdorf/homebrewery/issues'
|
|
color='red'
|
|
icon='fa-bug'>
|
|
report issue
|
|
</Nav.item>
|
|
}; |