mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
|
"use client";
|
||
|
|
||
|
import { ReactNode } from "react";
|
||
|
// layouts
|
||
|
import { ProjectAuthWrapper } from "@/layouts/auth-layout";
|
||
|
|
||
|
const ProjectDetailLayout = ({ children }: { children: ReactNode }) => (
|
||
|
<ProjectAuthWrapper>{children}</ProjectAuthWrapper>
|
||
|
);
|
||
|
|
||
|
export default ProjectDetailLayout;
|