mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 13:00:11 +02:00
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
|
|
import React from "react";
|
||
|
|
// plane package imports
|
||
|
|
import { cn } from "@plane/utils";
|
||
|
|
|
||
|
|
type Props = {
|
||
|
|
title: string;
|
||
|
|
children: React.ReactNode;
|
||
|
|
className?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
const AnalyticsWrapper: React.FC<Props> = (props) => {
|
||
|
|
const { title, children, className } = props;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className={cn("px-6 py-4", className)}>
|
||
|
|
<h1 className={"mb-4 text-2xl font-bold md:mb-6"}>{title}</h1>
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default AnalyticsWrapper;
|