import type { ReactNode } from 'react'; export default function Warning(props: { children: ReactNode }) { return (

{props.children}

); }