import * as React from "react"; function HabitItem(props: any) { console.log(props); return (

{props.habit_text}

) } export default HabitItem