aboutsummaryrefslogtreecommitdiff
path: root/examples/next/components/Title.tsx
blob: 73963663a2c8e38b84f4a3e96a17c6069040049b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Hey from "./subtitle";

export default function Title() {
  return (
    <h1>
      Hello <Hey></Hey>
    </h1>
  );
}

export enum TitleEnum {
  wow = 1,
}