Files
bun.sh/examples/next/components/Title.tsx
2021-10-13 00:28:20 -07:00

14 lines
164 B
TypeScript

import Hey from "./subtitle";
export default function Title() {
return (
<h1>
Hello <Hey></Hey>
</h1>
);
}
export enum TitleEnum {
wow = 1,
}