2024-07-07 00:23:32 +02:00

8 lines
164 B
TypeScript

import { ReactNode } from "react";
export interface IChildrenProps{
children: ReactNode;
}
export interface IOptionalChildrenProps{
children?: ReactNode;
}