add list title to details drawer

This commit is contained in:
Collin M. Barrett 2019-08-25 17:12:43 -05:00
parent 70228ee353
commit 8185a34676

View file

@ -14,6 +14,7 @@ export const ListDetailsDrawer = (props: RouteComponentProps & Props) =>
<Drawer
visible={true}
onClose={() => props.history.push("/")}>
<h2>{props.list.name}</h2>
<Description {...props.list} />
<SubscribeButton {...props.list} />
</Drawer>;