diff --git a/client/src/components/Level.tsx b/client/src/components/Level.tsx
index d5e23cb..48fe7d5 100644
--- a/client/src/components/Level.tsx
+++ b/client/src/components/Level.tsx
@@ -83,6 +83,37 @@ function Level() {
}
}
+// The mathematical formulation of the statement, supporting e.g. Latex
+// It takes three forms, depending on the precence of name and description:
+// - Theorem xyz: description
+// - Theorem xyz
+// - Exercises: description
+function ExerciseStatement({data}) {
+ return
+}
function PlayableLevel({worldId, levelId}) {
const codeviewRef = useRef(null)
@@ -192,6 +223,7 @@ function PlayableLevel({worldId, levelId}) {
// If this state is set to a pair `(name, type)` then the according doc will be open.
const [inventoryDoc, setInventoryDoc] = useState<{name: string, type: string}>(null)
+ // Open the doc of the clicked inventory item
function openInventoryDoc(name, type) {
setInventoryDoc({name, type})
}
@@ -234,29 +266,25 @@ function PlayableLevel({worldId, levelId}) {
}