Skip to content

Commit b2eb226

Browse files
committed
Correct file name case
1 parent f072954 commit b2eb226

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

src/App.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Routes, Route, Navigate } from 'react-router-dom';
3-
import Header from './components/Header';
3+
import Header from './components/header';
44
import Footer from './components/Footer';
55
import Home from './pages/Home';
66
import Syllabus from './pages/Syllabus';
@@ -12,7 +12,7 @@ import './styles/tailwind.css';
1212

1313
const App = () => (
1414
<div className="flex flex-col min-h-screen">
15-
<Header />
15+
<Header/>
1616
<main className="flex-grow">
1717
<Routes>
1818
<Route path="/" element={<Home />} />
@@ -22,7 +22,7 @@ const App = () => (
2222
<Route path="*" element={<Navigate to="/" />} />
2323
</Routes>
2424
</main>
25-
<Footer />
25+
<Footer/>
2626
</div>
2727
);
2828

0 commit comments

Comments
 (0)