looked at the official documentation and didn"t figure out what it is. What"s the difference between it and the render
attribute of Route?
const OldSchoolMenuLink = ({ label, to, activeOnlyWhenExact }) => (
<Route path={to} exact={activeOnlyWhenExact} children={({match}) => (
<div className={match ? "active" : ""}>
{match ? ">" : ""}<Link to={to}>{label}</Link>
</div>
)}></Route>
);