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