create page, component structure

This commit is contained in:
Noah Paige
2023-03-10 21:35:09 -07:00
parent fb5e88e994
commit 4b927f256f
6 changed files with 79 additions and 205 deletions
+11
View File
@@ -0,0 +1,11 @@
import "../App.css";
function Splash() {
return (
<div className="h-full w-full">
<h1>Splash</h1>
</div>
);
}
export default Splash;