ACLPage.tsx 267 B

12345678910111213
  1. import React from 'react';
  2. import { Routes, Route } from 'react-router-dom';
  3. import ACList from 'components/ACLPage/List/List';
  4. const ACLPage = () => {
  5. return (
  6. <Routes>
  7. <Route index element={<ACList />} />
  8. </Routes>
  9. );
  10. };
  11. export default ACLPage;