mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
export type Meta = {
|
|
title?: string | null;
|
|
description?: string | null;
|
|
image?: string | null;
|
|
url?: string | null;
|
|
};
|
|
|
|
export type Props = {
|
|
meta?: Meta;
|
|
children: React.ReactNode;
|
|
};
|