3function App() {
4 return (
5 <div style={{ padding: '2rem' }}>
6 <header style={{ marginBottom: '2rem' }}>
7 <h1 style={{
9 fontWeight: 'bold',
10 color: '#333'
11 }}>
12 ZIA Integer Compression Benchmark
14 <p style={{
15 color: '#666',
16 marginTop: '0.5rem'
17 }}>
eacabc8test real dataJeremy Magland 18 Comparing different integer array compression algorithms and their performance
20 </header>
21 <main>
22 <BenchmarkTable />
23 </main>
24 </div>
25 );
26}
28export default App;