mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
05de4d83f3
* chore: header refactor. * fix: core imports * chore: refactor profile activity header and fix all other header imports. * fix: import fixes * chore: header refactor. * fix: app dir header reimplementation * fix: removing parllel headers * fix: adding route groups to handle pages * fix: disabling sentry for temp * chore: update default exports in layouts & headers for consistency. * fix: bugfixes * fix: build errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
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>
|
|
</>
|
|
);
|
|
}
|