mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-05-10 00:58:40 +00:00
081fd6f39d
Moving the one file, changing a lot of imports (18 files), and deleting a directory.
14 lines
290 B
React
14 lines
290 B
React
const React = require('react');
|
|
const Nav = require('client/homebrew/navbar/nav.jsx');
|
|
|
|
module.exports = function(props){
|
|
return <Nav.item
|
|
className='patreon'
|
|
newTab={true}
|
|
href='https://www.patreon.com/NaturalCrit'
|
|
color='green'
|
|
icon='fas fa-heart'>
|
|
help out
|
|
</Nav.item>;
|
|
};
|