Skip to content

Commit 505005b

Browse files
author
Uttam Singh
committed
Fix case-sensitive import for Login.jsx
1 parent 52050ec commit 505005b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import { BrowserRouter, Routes, Route } from "react-router-dom";
3-
import Login from "./Login.jsx"; // ✅ Make sure this file exists in the same folder
4-
import Dashboard from "./Dashboard.jsx"; // Optional if you have one
3+
import Login from "./Login.jsx";
4+
import Dashboard from "./Dashboard.jsx";
55

66
export default function App() {
77
return (

0 commit comments

Comments
 (0)