pendantator/web/src/pages/Role/RolePage/RolePage.tsx

12 lines
195 B
TypeScript

import RoleCell from 'src/components/Role/RoleCell'
type RolePageProps = {
id: string
}
const RolePage = ({ id }: RolePageProps) => {
return <RoleCell id={id} />
}
export default RolePage