feat: 登录页面框架

This commit is contained in:
landaiqing
2024-04-15 02:01:30 +08:00
parent b4a9ad82b9
commit 73a74ccc7c
24 changed files with 2010 additions and 179 deletions

View File

@@ -1,18 +1,12 @@
import type { RouteObject } from 'react-router-dom'
import About from '@/views/about/About'
// import Home from '@/views/home/Home'
import NoFound from '@/views/404/404'
import Login from '@/views/Login/index'
import Login from '@/views/Login'
const routes: RouteObject[] = [
{
path: '/',
Component: Login,
},
{
path: '/about',
Component: About,
},
{
path: '*',
Component: NoFound,