feat: routine labels

This commit is contained in:
cha0s 2020-06-20 03:41:23 -05:00
parent b3c5e760cc
commit 5512be819a

View File

@ -22,9 +22,12 @@ const Routines = ({
{
entries.length > 0 && (
entries.map(
([, routine]) => (
([name, routine]) => (
<li className="routine">
<label>
{name}
<Actions.component context={context} value={routine.routine} />
</label>
</li>
),
)