Add eslint standard + use pnpm
This commit is contained in:
parent
de4772e9e9
commit
aafc769f33
8 changed files with 2185 additions and 5 deletions
9
app/head.tsx
Normal file
9
app/head.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
export default function Head() {
|
||||
return (
|
||||
<>
|
||||
<title></title>
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</>
|
||||
)
|
||||
}
|
12
app/layout.tsx
Normal file
12
app/layout.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html>
|
||||
<head />
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
}
|
5
app/page.tsx
Normal file
5
app/page.tsx
Normal file
|
@ -0,0 +1,5 @@
|
|||
export default function HomePage (): JSX.Element {
|
||||
return (
|
||||
<div>Hello World</div>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue