1
0
Fork 0

feat(fs.dev): Added themed loading indicator

This commit is contained in:
Joost De Cock 2021-12-25 15:08:14 +01:00
parent 3940f458bb
commit da7ff9ec43
11 changed files with 132 additions and 15 deletions

View file

@ -0,0 +1,13 @@
const Footer = ({ app }) => {
return (
<footer>
<div className="theme-gradient h-8 w-full"></div>
<div className="p-4 flex flex-row">
<p>Some content here</p>
<p>Some more content here</p>
</div>
</footer>
)
}
export default Footer