Skip to content

Commit 44ddc9e

Browse files
committed
new site branch
1 parent 4e54ad3 commit 44ddc9e

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

mlflow-site/Home.jsx

Whitespace-only changes.

mlflow-site/NavBar.jsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
<button>
16+
Features
17+
</button>
18+
<button>
19+
Demo
20+
</button>
21+
<button>
22+
Team
23+
</button>
24+
<img>
25+
26+
</img>
27+
<img>
28+
29+
</img>
30+
</div>
31+
</div>
32+
)
33+
}

0 commit comments

Comments
 (0)