export default function NationCard({ nation, onSelect }) { return (
onSelect(nation)} >
{`${nation.name}

{nation.name}

Population: {nation.population}

) }