From 19f3420156cc0c12212380067e3e20cef00366ce Mon Sep 17 00:00:00 2001 From: Andre Gomes Date: Mon, 12 Feb 2024 14:22:41 -0300 Subject: [PATCH] feat: add NavBar component --- app/javascript/src/components/NavBar.jsx | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/javascript/src/components/NavBar.jsx 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 +