feat(create-turbo): apply official-starter transform
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import { Button } from "@repo/ui";
|
||||
|
||||
import styles from "../styles/index.module.css";
|
||||
|
||||
export default function Web() {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<h1>Web</h1>
|
||||
<Button onClick={() => console.log("Pressed!")} text="Boop" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user