UNPKG
mystash
Version:
latest (0.2.0)
0.2.0
Personal finance app
github.com/jozsi/mystash
jozsi/mystash
mystash
/
src
/
frontend
/
__fixtures__
/
Table.js
13 lines
(11 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Component
from
'../components/Table'
;
export
default
{
component
:
Component
,
grommet
:
true
,
props
: {
columns
:
new
Map
([ [
'Hello'
,
row
=>
row.
hello
], [
'World'
,
row
=>
row.
world
], ]), }, };