Initial Setup for Nile

This commit is contained in:
Dunemask 2022-09-09 16:23:24 -04:00
commit ca9280f324
36 changed files with 2668 additions and 0 deletions

4
src/App.jsx Normal file
View file

@ -0,0 +1,4 @@
import { createRoot } from "react-dom/client";
import Nile from "./Nile.jsx";
const root = createRoot(document.getElementById("root")).render(<Nile />);

3
src/Nile.jsx Normal file
View file

@ -0,0 +1,3 @@
export default function Nile() {
return <h1>Dunemask's Website</h1>;
}