mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-21 20:36:37 +00:00
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
interface AccessLayoutProps {
|
|
children: React.ReactNode;
|
|
params: Promise<{
|
|
orgId: string;
|
|
}>;
|
|
}
|
|
|
|
export default async function ResourceLayout(props: AccessLayoutProps) {
|
|
const params = await props.params;
|
|
const { children } = props;
|
|
|
|
return <>{children}</>;
|
|
}
|