Initial commit from Create Next App

This commit is contained in:
2022-10-12 22:06:54 +02:00
commit 7f593c65e4
12 changed files with 2138 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
export default function TestComponent({ name = 'world' }) {
return (
<>
<div>Hello, {name}!</div>
<style jsx>{`
div {
background-color: #111;
border-radius: 0.5em;
color: #fff;
margin-bottom: 1.5em;
padding: 0.5em 0.75em;
}
`}</style>
</>
)
}