import * as React from "react"; import renderMarkdown from "../markdownRender"; function HabitItem(props: any) { let habit_text = renderMarkdown(props.habit_text); let habit_notes = renderMarkdown(props.habit_notes); return (