added more structure, sass, and page routers

This commit is contained in:
JBB0807 2025-04-14 14:25:41 -07:00
parent c774dff9e0
commit bda7b7224a
23 changed files with 767 additions and 158 deletions

View file

@ -1,10 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import AppRouter from "./routers/AppRouter";
import "./scss/styles.scss";
createRoot(document.getElementById('root')).render(
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>,
)
<AppRouter />
</StrictMode>
);