1 parent 49eff53 commit 83f1fb9Copy full SHA for 83f1fb9
1 file changed
pages/labs/recharts.tsx
@@ -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