diff --git a/src/app/page.tsx b/src/app/page.tsx index db7393c..89e2af4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,9 @@ +import Example from "@/components/Example"; + const Home = () => { return (
- Hello World +
); }; diff --git a/src/components/Example.tsx b/src/components/Example.tsx new file mode 100644 index 0000000..f978780 --- /dev/null +++ b/src/components/Example.tsx @@ -0,0 +1,16 @@ +const Example = () => { + return ( +
+
EXAMPLE COMPONENT
+ +
+
+
+
+ +
Example Component
+
+ ); +}; + +export default Example;