Skip to content

Commit 2348fef

Browse files
committed
added some pictures
1 parent ad90aae commit 2348fef

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

doc/edit-complete.png

23 KB
Loading

doc/edit-init.png

24.4 KB
Loading

doc/edit-input.png

23.9 KB
Loading

example/example.js

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,15 @@ ReactDom.render(
6565
//just a function to get an example JSON object
6666
function getExampleJson1() {
6767
return {
68-
test: 'this is a test string',
69-
another_sibling: 42,
70-
how_will_array_do: [1, 2, 3, 'test'],
71-
how_will_floats_do: -2.757,
68+
string: 'this is a test string',
69+
integer: 42,
70+
array: [1, 2, 3, 'test'],
71+
float: -2.757,
7272
undefined_var: undefined,
7373
parent: {
7474
sibling1: true,
7575
sibling2: false,
7676
sibling3: null,
77-
'last-sibling': {
78-
grand_child: NaN,
79-
'grand-child-func': (a) => {
80-
let b = a*a;
81-
return b;
82-
}
83-
}
8477
},
8578
string_number: "1234"
8679
};

0 commit comments

Comments
 (0)