import * as React from "react"; import { RegimenListItem } from "./regimen_list_item"; import { Everything } from "../../interfaces"; import { AddRegimen } from "./add_button"; import { t } from "i18next"; export function RegimensList(props: Everything) { return
Regimens
{t(`This is a list of all of your regimens. Coming soon: Regimens, and regimen cloning!`)}
{ props .regimens .all .map((regimen, inx) => ) }
; }