Skip to content

Commit

Permalink
Move components under "shared" folder
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinPeng13 committed Mar 29, 2024
1 parent f57ad60 commit 1de96e7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/routes/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createBrowserRouter } from "react-router-dom";
import TestPage from "./shared/TestPage.tsx";
import App from "./App.tsx"
import EventPage from "./events/EventPage.tsx";
import ToastDemoPage from "./demo/ToastDemoPage.tsx";
import ToastDemoPage from "./shared/ToastDemoPage.tsx";


const router = createBrowserRouter([
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from "react";
import Toast, { ToastProps, ToastType } from "../../components/toast/Toast";
import Toast, { ToastProps, ToastType } from "../../components/shared/Toast";

function ToastDemoPage() {
const [toasts, setToasts] = useState<ToastProps[]>([]);
Expand Down

0 comments on commit 1de96e7

Please sign in to comment.