import {type PropsWithChildren} from 'react'; export default function Message({children}: PropsWithChildren) { return (
{children}
); }