forked from github/plane
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;
|
||
|
};
|