plane/layouts/types.d.ts
2022-11-19 19:51:26 +05:30

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;
};