added things

This commit is contained in:
LucasLassiter
2022-05-03 22:00:45 -07:00
parent 455ab524fa
commit fb28b8380d
10 changed files with 620 additions and 1064 deletions

3
components/Loader.js Normal file
View File

@@ -0,0 +1,3 @@
export default function Loader({ show }) {
return show ? <div className="loader"></div> : null;
}