refactor: enhance workspace and project wrapper modularity (#6207)

This commit is contained in:
Prateek Shourya 2024-12-16 19:01:37 +05:30 committed by GitHub
parent 438cc33046
commit 4507802aba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 62 additions and 30 deletions

View file

@ -1,8 +1,8 @@
"use client";
import { ReactNode } from "react";
// layouts
import { ProjectAuthWrapper } from "@/layouts/auth-layout";
// plane web layouts
import { ProjectAuthWrapper } from "@/plane-web/layouts/project-wrapper";
const ProjectDetailLayout = ({ children }: { children: ReactNode }) => (
<ProjectAuthWrapper>{children}</ProjectAuthWrapper>