From e121930031c72f53ccfa6d203bbb9f8cca637d9c Mon Sep 17 00:00:00 2001 From: Khankamol Chor Kongrukgreatiyos Date: Sun, 3 Nov 2024 16:30:24 -0800 Subject: [PATCH] stash changes --- src/App.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 54888f2..49e8a4a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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(null); return ( <> {/* */} - + ); }