From 082353e9bca3c6917f24548606c3c66e29578fc6 Mon Sep 17 00:00:00 2001 From: Andre H Date: Fri, 16 Feb 2024 12:31:13 +0700 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20feat:=20implement=20`compo?= =?UTF-8?q?nents`=20page=20to=20act=20as=20storybook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/pages/components/index.tsx | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 packages/frontend/src/pages/components/index.tsx diff --git a/packages/frontend/src/pages/components/index.tsx b/packages/frontend/src/pages/components/index.tsx new file mode 100644 index 00000000..9a7a8519 --- /dev/null +++ b/packages/frontend/src/pages/components/index.tsx @@ -0,0 +1,39 @@ +import React from 'react'; + +const Page = () => { + return ( +
+
+

Manual Storybook

+

+ Get started by editing{' '} + + packages/frontend/src/pages/components/index.tsx + +

+
+ + {/* Insert Components here */} +
+

Component A

+ +
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+ ); +}; + +export default Page;