Add Footer and Header

This commit is contained in:
NoAvatar 2024-10-17 04:13:48 +10:00
parent 030019f954
commit 59ef6bba8d
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export default function Footer() {
return <footer>Application Footer</footer>
}

View File

@ -0,0 +1,4 @@
export default function Header() {
return <header>Header for Application
</header>
}