We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d2be1 commit 84d2973Copy full SHA for 84d2973
frontend/app/src/components/public/NavigationBar.tsx
@@ -0,0 +1,26 @@
1
+import { Nav, Navbar } from "react-bootstrap";
2
+import { Link } from "react-router-dom";
3
+
4
+export const NavigationBar = () => {
5
+ return (
6
+ <Navbar>
7
+ <Nav>
8
+ <Nav.Item>
9
+ <Nav.Link as={Link} to="/">
10
+ Home
11
+ </Nav.Link>
12
+ </Nav.Item>
13
14
+ <Nav.Link as={Link} to="/targets">
15
+ Target Search
16
17
18
19
+ <Nav.Link as={Link} to="/targets/create">
20
+ Target Create
21
22
23
+ </Nav>
24
+ </Navbar>
25
+ );
26
+};
0 commit comments