export default ({ data }) => { return data.map(({ id, title, examples }) => (
{id ? {title} : {title}} {id && ?}
{ Object.entries(examples).map(([path, desc]) => ( )) }
)) } const ExampleItem = ({ desc, url }) => (
{desc} {url}
)