add day 5

This commit is contained in:
Zoe
2022-09-27 21:41:37 -05:00
parent 213b42bb9c
commit 2040570ea2
19 changed files with 2565 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { Counter } from '/src/components/counter';
import { RouterLink } from '/src/components/routerLink';
export default () => {
return `
<div class="grid place-items-center p-3 content-center min-h-screen">
<div class="p-6 border-neutral-800 rounded-lg container__content border">
${Counter()}
<div class="flex gap-1 justify-center">
reutrn ${RouterLink('/', 'Home')}
</div>
</div>
</div>
`
}