mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
17 lines
260 B
Plaintext
17 lines
260 B
Plaintext
type lesson = {
|
|
id: string,
|
|
title: string,
|
|
unitId: string,
|
|
}
|
|
|
|
type annotationState = {
|
|
selectedLesson: option<lesson>,
|
|
isPenOpen: bool,
|
|
notes: dict<string>,
|
|
}
|
|
|
|
let initialState = {
|
|
selectedLesson: None,
|
|
isPenOpen: false,
|
|
notes: Dict.make(),
|
|
} |