Skip to content

Commit

Permalink
stash changes
Browse files Browse the repository at this point in the history
  • Loading branch information
khankamolk committed Nov 4, 2024
1 parent fbcaf7b commit e121930
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import React, { useState } from 'react';
import "./App.css";
import Kanban from "./app/Kanban/Kanban"
import SetUpPage from "./components/SetUpPage"
import SemesterBlock from "./components/SemesterBlock"
import Kanban from "./app/Kanban/Kanban";
import Onboarding from "./app/Onboarding/Onboarding";
import SetUpPage from "./components/SetUpPage";
import SemesterBlock from "./components/SemesterBlock";

function App() {
const [selectedYear, setSelectedYear] = useState<number | null>(null);
return (
<>
{/* <SetUpPage></SetUpPage> */}
<Kanban />
<Onboarding />
</>
);
}
Expand Down

0 comments on commit e121930

Please sign in to comment.