mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-05-09 22:48:39 +00:00
081fd6f39d
Moving the one file, changing a lot of imports (18 files), and deleting a directory.
18 lines
288 B
React
18 lines
288 B
React
const React = require('react');
|
|
|
|
const Nav = require('client/homebrew/navbar/nav.jsx');
|
|
|
|
module.exports = function (props) {
|
|
return (
|
|
<Nav.item
|
|
color='purple'
|
|
icon='fas fa-dungeon'
|
|
href='/vault'
|
|
newTab={false}
|
|
rel='noopener noreferrer'
|
|
>
|
|
Vault
|
|
</Nav.item>
|
|
);
|
|
};
|