My react router works fine.. but I would like get the date from the Path
as the title
which expects a string.
<Route exact path="/meeting/:date"
breadcrumb="Meetings"
title={DATE}
component={(props) => (
<FooComponent
date={props.match.params.date} />
)}
/>
thanks