mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
|
"use client";
|
||
|
|
||
|
import { AppHeader, ContentWrapper } from "@/components/core";
|
||
|
import { WorkspaceAnalyticsHeader } from "./header";
|
||
|
|
||
|
export default function WorkspaceAnalyticsLayout({ children }: { children: React.ReactNode }) {
|
||
|
return (
|
||
|
<>
|
||
|
<AppHeader header={<WorkspaceAnalyticsHeader />} />
|
||
|
<ContentWrapper>{children}</ContentWrapper>
|
||
|
</>
|
||
|
);
|
||
|
}
|