mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
261 B
TypeScript
18 lines
261 B
TypeScript
"use client";
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
params: {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
};
|
|
|
|
const IssuesLayout = (props: Props) => {
|
|
const { children } = props;
|
|
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default IssuesLayout;
|