import React from 'react' export default function Response({ children, title = 'Example response', }) { return (
{title}
{children}
); }