From abcda31ed3631f1ca38c2305b404c931dd4ed61b Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Sat, 8 Mar 2025 18:06:01 +1100 Subject: Correct loading of css from invalid css-loader v3/v4 migration --- src/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/index.jsx') diff --git a/src/index.jsx b/src/index.jsx index 2160d89..0d2c454 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -2,7 +2,7 @@ import React from "react"; import {createRoot} from "react-dom/client"; import {BrowserRouter, Routes, Route} from "react-router-dom"; -import Site from "./components/site/Site.jsx"; +import Greeter from "./components/greeter/Greeter.jsx"; import NotFound from "./components/not_found/NotFound.jsx"; import "./reset.css"; @@ -13,7 +13,7 @@ function BrowserRoutes() { return ( - } /> + } /> } /> -- cgit v1.2.3