fix OAuth2 issue

This commit is contained in:
h z
2024-12-04 08:03:14 +00:00
parent 18a84123d3
commit 321dea202d
7 changed files with 23 additions and 12 deletions

View File

@@ -4,6 +4,7 @@ import MainNavigation from "./components/MainNavigation";
import SideNavigation from "./components/SideNavigation";
import MarkdownContent from "./components/MarkdownContent";
import "./App.css";
import Callback from "./Callback";
const App = () => {
return (
@@ -16,6 +17,8 @@ const App = () => {
<Routes>
<Route path="/" element={<h1>Welcome to My React Project</h1>} />
<Route path="/markdown/:id" element={<MarkdownContent />} />
<Route path="/callback" element={<Callback />} />
<Route path="/test" element={<h1>TEST</h1>}></Route>
</Routes>
</main>
</div>