chore: rename to template
This commit is contained in:
parent
063dfe39e9
commit
c011186c37
46 changed files with 143 additions and 142 deletions
13
apps/next-template/src/app/layout.tsx
Normal file
13
apps/next-template/src/app/layout.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import "./styles.css";
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue