import React from 'react'; import PropTypes from 'prop-types'; const Container = ({id, title, children}) => { return(

{title}

<>{children}
) } type Props = { children: React.ReactNode }; type Props = { id: number, title: string, children: React.ReactNode, }; export default Container;