mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* [WEB-1657] dev: admin application code structuring. * chore: update mobx-react-lite import to mobx-react.
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
"use client";
|
|
|
|
type TPageHeader = {
|
|
title?: string;
|
|
description?: string;
|
|
};
|
|
|
|
export const PageHeader: React.FC<TPageHeader> = (props) => {
|
|
const { title = "God Mode - Plane", description = "Plane god mode" } = props;
|
|
|
|
return (
|
|
<>
|
|
<title>{title}</title>
|
|
<meta name="description" content={description} />
|
|
</>
|
|
);
|
|
};
|