/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / App.tsx
46 lines · 1.0 KBCodeBlameHistory
70a7a71code formattingJeremy Magland 1import { BenchmarkTable } from "./components/BenchmarkTable";
a4762faweb-uiJeremy Magland 2
3function App() {
4 return (
70a7a71code formattingJeremy Magland 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 >
eacabc8test real dataJeremy Magland 14 ZIA Integer Compression Benchmark
a4762faweb-uiJeremy Magland 15 </h1>
70a7a71code formattingJeremy Magland 16 <p
17 style={{
18 color: "#666",
19 marginTop: "0.5rem",
20 }}
21 >
22 Comparing different integer array compression algorithms and their
23 performance
a4762faweb-uiJeremy Magland 24 </p>
8d0d0aemarkov predictionJeremy Magland 25 <a
26 href="https://github.com/magland/zia"
27 target="_blank"
28 rel="noopener noreferrer"
29 style={{
30 color: "#0066cc",
31 textDecoration: "none",
32 display: "inline-block",
33 marginTop: "0.5rem",
34 }}
35 >
36 View source on GitHub
37 </a>
a4762faweb-uiJeremy Magland 38 </header>
39 <main>
40 <BenchmarkTable />
41 </main>
42 </div>
43 );
46export default App;
moveopenescclose