@react.component let make = ( ~lesson: AnnotationTypes.lesson, ~note: option, ~onNoteChange: (string, string) => unit, ~onClose: unit => unit, ) => { let noteValue = switch note { | Some(n) => n | None => "" }

{React.string("Annotation")}

{React.string(lesson.title)}