mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-23 15:24:21 +00:00
16 lines
538 B
TypeScript
16 lines
538 B
TypeScript
|
import * as React from "react"
|
||
|
import {useManagedViewSet} from "../../hooks/useManagedViewSet"
|
||
|
import {SophonResearchGroup} from "../../types/SophonTypes"
|
||
|
import {ViewSetRouter} from "../routing"
|
||
|
import {SpecificViewSetRouterProps} from "../routing/ViewSetRouter"
|
||
|
|
||
|
|
||
|
export function GroupRouter({...props}: SpecificViewSetRouterProps<SophonResearchGroup>): JSX.Element {
|
||
|
return (
|
||
|
<ViewSetRouter
|
||
|
{...props}
|
||
|
viewSet={useManagedViewSet<SophonResearchGroup>("/api/core/groups/", "slug")}
|
||
|
/>
|
||
|
)
|
||
|
}
|