From 8a7baebdd56c7d651c2dcb33ec8a3953240ca914 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 31 May 2024 21:11:07 +0900 Subject: [PATCH] feat: add home contents --- packages/react/src/Home.tsx | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/packages/react/src/Home.tsx b/packages/react/src/Home.tsx index 1cc0b3c..baa8d15 100644 --- a/packages/react/src/Home.tsx +++ b/packages/react/src/Home.tsx @@ -1,5 +1,30 @@ +import { Link } from "react-router-dom"; +import { Button } from "../components/Button"; + function Home() { - return <>; + return ( +
+
+
+

+ Build your components in isolation +

+

+ There are a lot of component libraries out there, but why it install + so many things? +

+
+
+ + +
+
+
+ ); } export default Home;