diff --git a/app/javascript/src/components/NavBar.jsx b/app/javascript/src/components/NavBar.jsx new file mode 100644 index 0000000..4ffe25d --- /dev/null +++ b/app/javascript/src/components/NavBar.jsx @@ -0,0 +1,33 @@ +import React from 'react' +import { Link } from 'react-router-dom' +import { useTranslation } from 'react-i18next' +import { Button, Divider } from 'antd' + +const NavBar = () => { + const { t } = useTranslation() + + return ( + + ) +} + +export default NavBar +