File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 47
47
48
48
- name : Build the project
49
49
run : npm run build
50
+
51
+ - name : Build examples
52
+ run : npm run example
Original file line number Diff line number Diff line change 10
10
/.vscode /
11
11
/.spago /
12
12
/output-pulp /
13
- .psc- *
13
+ .psc- *
Original file line number Diff line number Diff line change @@ -128,12 +128,12 @@ moveItem fromIndex toIndex items =
128
128
129
129
main :: Effect Unit
130
130
main = do
131
- maybeRoot <- window
131
+ maybeContainer <- window
132
132
>>= document
133
133
>>= toNonElementParentNode
134
134
>>> getElementById " container"
135
- case maybeRoot of
136
- Nothing -> throw " Root element not found."
135
+ case maybeContainer of
136
+ Nothing -> throw " Container element not found."
137
137
Just container -> do
138
138
todoExample <- mkTodoExample
139
139
render (todoExample unit) container
You can’t perform that action at this time.
0 commit comments