1import { BenchmarkTable } from './components/BenchmarkTable';
3function App() {
4 return (
5 <div style={{ padding: '2rem' }}>
6 <header style={{ marginBottom: '2rem' }}>
7 <h1 style={{
8 fontSize: '2rem',
9 fontWeight: 'bold',
10 color: '#333'
11 }}>
12 Zia Compression Benchmark Results
13 </h1>
14 <p style={{
15 color: '#666',
16 marginTop: '0.5rem'
17 }}>
18 Comparing different compression algorithms and their performance
19 </p>
20 </header>
21 <main>
22 <BenchmarkTable />
23 </main>
24 </div>
25 );
26}
28export default App;