Add base setup

This commit is contained in:
2022-10-12 22:16:59 +02:00
parent 7f593c65e4
commit c449ec250a
9 changed files with 118 additions and 49 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>
</>
);
}