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 4e54ad3 commit 44ddc9eCopy full SHA for 44ddc9e
mlflow-site/Home.jsx
mlflow-site/NavBar.jsx
@@ -0,0 +1,33 @@
1
+import { useRef } from "react"
2
+
3
4
+const NavBar = () => {
5
+ const myRef = useRef<HTMLElement | null>(null);
6
+ return (
7
+ <div>
8
+ <div className="projectName">
9
+ MLflow.js
10
+ </div>
11
+ <div className="navBarLinks">
12
+ <button>
13
+ Home
14
+ </button>
15
16
+ Features
17
18
19
+ Demo
20
21
22
+ Team
23
24
+ <img>
25
26
+ </img>
27
28
29
30
31
32
+ )
33
+}
0 commit comments