type lesson = { id: string, title: string, unitId: string, } type annotationState = { selectedLesson: option, isPenOpen: bool, notes: dict, } let initialState = { selectedLesson: None, isPenOpen: false, notes: Dict.make(), }