From a19efe807e0799fd558061761495f0a132dc137f Mon Sep 17 00:00:00 2001 From: ServidioEC <52542729+ServidioEC@users.noreply.github.com> Date: Sun, 12 Sep 2021 23:30:19 -0300 Subject: [PATCH] (#5) Adicionando quinto NavBar Co-authored-by: Lucas Boaventura --- .../src/components/NavBar/FifthNavBar/index.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 frontend/src/components/NavBar/FifthNavBar/index.tsx diff --git a/frontend/src/components/NavBar/FifthNavBar/index.tsx b/frontend/src/components/NavBar/FifthNavBar/index.tsx new file mode 100644 index 0000000..f12eaa3 --- /dev/null +++ b/frontend/src/components/NavBar/FifthNavBar/index.tsx @@ -0,0 +1,16 @@ +import React from 'react'; + +import { NavBarContainer } from 'components/NavBar/styles'; + +const FifthNavBar: React.FC = () => { + return ( + +
+ Mesa +
+ +
+ ); +}; + +export default FifthNavBar;