diff options
Diffstat (limited to 'examples/hello-next/components/Title.tsx')
-rw-r--r-- | examples/hello-next/components/Title.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/hello-next/components/Title.tsx b/examples/hello-next/components/Title.tsx new file mode 100644 index 000000000..c8f1a935f --- /dev/null +++ b/examples/hello-next/components/Title.tsx @@ -0,0 +1,9 @@ +import Hey from "./subtitle"; + +export default function Title() { + return ( + <h1> + Hello <Hey></Hey> + </h1> + ); +} |