plane/layouts/types.d.ts

12 lines
198 B
TypeScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
export type Meta = {
title?: string | null;
description?: string | null;
image?: string | null;
url?: string | null;
};
export type Props = {
meta?: Meta;
children: React.ReactNode;
};