This commit is contained in:
rgrgogu
2026-05-05 23:16:22 +08:00
parent 683b25956a
commit 745c51682e
125 changed files with 18925 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import React from 'react'
const Client = () => {
return (
<div>
Client Page
</div>
)
}
export default Client
@@ -0,0 +1,9 @@
import ProtectedRoute from '../../../routes/ProtectedRoute'
import Client from '../pages/Client'
export const ClientRoutes = {
element: <ProtectedRoute allowedRoles={['client']} />,
children: [
{ path: '/client', element: <Client /> },
],
}