ready to test

Testing

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-06-22 10:07:20 +08:00
parent 56d984a26a
commit fbef7cb6e6
283 changed files with 25961 additions and 1072 deletions
+17
View File
@@ -0,0 +1,17 @@
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(),
}