mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
9 lines
251 B
React
9 lines
251 B
React
import ProtectedRoute from '../../../routes/ProtectedRoute'
|
|
import Client from '../pages/Client'
|
|
|
|
export const ClientRoutes = {
|
|
element: <ProtectedRoute allowedRoles={['client']} />,
|
|
children: [
|
|
{ path: '/client', element: <Client /> },
|
|
],
|
|
} |