Redesign UI with shadcn
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
import { StrictMode } from "react";
|
||||
import { Home } from "@/routes/Home";
|
||||
import { Login } from "@/routes/Login";
|
||||
import { Piece } from "@/routes/Piece";
|
||||
import { Root } from "@/routes/Root";
|
||||
import { lazy, StrictMode } from "react";
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { createBrowserRouter, RouterProvider } from "react-router-dom";
|
||||
import { Attachment } from "./routes/Attachment";
|
||||
import { Home } from "./routes/Home";
|
||||
import { Login } from "./routes/Login";
|
||||
import { Piece } from "./routes/Piece";
|
||||
import { Root } from "./routes/Root";
|
||||
import "./style.css";
|
||||
|
||||
const Attachment = lazy(() => import("@/routes/Attachment"));
|
||||
|
||||
const router = createBrowserRouter([
|
||||
{
|
||||
path: "/",
|
||||
|
||||
Reference in New Issue
Block a user