dynafire commited on
Commit
b6c3fc8
·
1 Parent(s): 295681f

try 2 of sortable

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -1,3 +1,16 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ ```json:table
5
+ {
6
+ "fields" : [
7
+ {"key": "a", "label": "AA", "sortable": true},
8
+ {"key": "b", "label": "BB"},
9
+ {"key": "c", "label": "CC"}
10
+ ],
11
+ "items" : [
12
+ {"a": "11", "b": "22", "c": "33"},
13
+ {"a": "211", "b": "222", "c": "233"}
14
+ ]
15
+ }
16
+ ```