/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / App.tsx
33 lines · 712 BBlameHistoryRaw
1import { BenchmarkTable } from "./components/BenchmarkTable";
3function App() {
4 return (
5 <div style={{ padding: "2rem" }}>
6 <header style={{ marginBottom: "2rem" }}>
7 <h1
8 style={{
9 fontSize: "2rem",
10 fontWeight: "bold",
11 color: "#333",
12 }}
13 >
14 ZIA Integer Compression Benchmark
15 </h1>
16 <p
17 style={{
18 color: "#666",
19 marginTop: "0.5rem",
20 }}
21 >
22 Comparing different integer array compression algorithms and their
23 performance
24 </p>
25 </header>
26 <main>
27 <BenchmarkTable />
28 </main>
29 </div>
30 );
33export default App;
moveopenescclose