0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-15 01:52:45 +00:00

Add migrate nav item to pages and update migrate document

This commit is contained in:
Charlie Humphreys
2021-12-15 23:57:52 -06:00
parent f1c4910993
commit fd23396b95
10 changed files with 233 additions and 193 deletions

View File

@@ -0,0 +1,13 @@
const React = require('react');
const Nav = require('naturalcrit/nav/nav.jsx');
module.exports = function(props){
return <Nav.item
className='migrate'
newTab={false}
href='/migrate'
color='blue'
icon='fas fa-route'>
migrate
</Nav.item>;
};