mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
14 lines
164 B
TypeScript
14 lines
164 B
TypeScript
import Hey from "./subtitle";
|
|
|
|
export default function Title() {
|
|
return (
|
|
<h1>
|
|
Hello <Hey></Hey>
|
|
</h1>
|
|
);
|
|
}
|
|
|
|
export enum TitleEnum {
|
|
wow = 1,
|
|
}
|