Skip to content

Commit 83f1fb9

Browse files
committed
feat: add labs recharts route
1 parent 49eff53 commit 83f1fb9

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

pages/labs/recharts.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Head from 'next/head';
2+
3+
import { RechartsPocPage } from '@/components/recharts-poc';
4+
5+
export default function RechartsLabPage() {
6+
return (
7+
<>
8+
<Head>
9+
<title>Recharts POC | Serhii Shramko</title>
10+
<meta name="robots" content="noindex,nofollow" />
11+
<meta
12+
name="description"
13+
content="Internal sandbox: Recharts validation POC. Not intended for public consumption."
14+
/>
15+
</Head>
16+
<RechartsPocPage />
17+
</>
18+
);
19+
}

0 commit comments

Comments
 (0)