aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/components/Title.tsx
blob: c8f1a935f4be5bff6fff4dcf1e022280696830da (plain) (blame)
1
2
3
4
5
6
7
8
9
import Hey from "./subtitle";

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