Files
AI/참고/playwright-main/tests/components/ct-react-vite/src/components/CheckChildrenProp.tsx
2026-05-12 19:40:31 +09:00

8 lines
245 B
TypeScript

import type { PropsWithChildren } from 'react';
type DefaultChildrenProps = PropsWithChildren<{}>;
export default function CheckChildrenProp(props: DefaultChildrenProps) {
return <>{'children' in props ? props.children : 'No Children'}</>
}