/* * @Company: hugeInfo * @Author: ldh * @Date: 2022-02-14 15:48:51 * @LastEditTime: 2022-11-01 09:25:05 * @LastEditors: ldh * @Version: 1.0.0 * @Description: 路由 */ import React from 'react'; import { HashRouter as Router, Route, Routes, Navigate } from 'react-router-dom'; import Navigation from '../components/Navigation'; import Login from '../views/login'; import Customer from '../views/customer/customerList'; import CustomerInfo from '../views/customer/customerForm'; import CustomerDetail from '../views/customer/customerDetail'; import AddVersion from '../views/customer/addVersion'; import AddMeal from '../views/customer/addMeal'; import AddPayee from '../views/customer/addPayee'; import Feature from '../views/feature'; import Edition from '../views/edition'; const Routers = () => { return ( } /> }> } /> } /> } /> } /> } /> } /> } /> } /> } /> ); }; export default Routers;