Skip to content

Commit

Permalink
Merge pull request #2 from sandygudie/new-version
Browse files Browse the repository at this point in the history
fixed routing
  • Loading branch information
sandygudie authored Dec 23, 2023
2 parents b478858 + 3001fe4 commit 579359b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { useEffect } from "react";
import Home from "pages/home";

Check failure on line 2 in src/App.tsx

View workflow job for this annotation

GitHub Actions / build

Cannot find module 'pages/home' or its corresponding type declarations.
import { Route, Routes } from "react-router-dom";
import Dashboard from "pages/dashboard";
import Dashboard from "./pages/dashboard";

Check failure on line 4 in src/App.tsx

View workflow job for this annotation

GitHub Actions / build

Cannot find module './pages/dashboard' or its corresponding type declarations.
import LoadingSpinner from "components/LoadingSpinner";
import NotFound from "pages/notFound";
import Workspace from "pages/workspace";
import NotFound from "./pages/notFound";

Check failure on line 6 in src/App.tsx

View workflow job for this annotation

GitHub Actions / build

Cannot find module './pages/notFound' or its corresponding type declarations.
import Workspace from "./pages/workspace";

function App() {
useEffect(() => {
Expand Down

0 comments on commit 579359b

Please sign in to comment.