function Glossary(props) { return (
{props.items.map(item => ( // Without the `key`, React will fire a key warning
{item.term}
{item.description}
))}
);}