mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Matthias Kretschmann
56f5e77c49
* asset teaser test, story, useUserPreferences Jest mock * fixtures & mocks * more tests * cleanup * more tests * more tests * more tests * more tests * typing fix * package updates * reorg * more tests * more tests * more tests * more tests * reorg, more tests * reorg fixes * more tests * rebase fix * subgraph query typing fix * restore some storybook stories * more tests * more tests * package lock fix * graphql override
42 lines
784 B
TypeScript
42 lines
784 B
TypeScript
export const columns = [
|
|
{
|
|
name: 'Name',
|
|
selector: (row: any) => row.name,
|
|
maxWidth: '45rem',
|
|
grow: 1
|
|
},
|
|
{
|
|
name: 'Symbol',
|
|
selector: (row: any) => row.symbol,
|
|
maxWidth: '10rem'
|
|
},
|
|
{
|
|
name: 'Price',
|
|
selector: (row: any) => row.price,
|
|
right: true
|
|
}
|
|
]
|
|
|
|
export const data = [
|
|
{
|
|
name: 'Title asset',
|
|
symbol: 'DATA-70',
|
|
price: '1.011'
|
|
},
|
|
{
|
|
name: 'Title asset Title asset Title asset Title asset Title asset',
|
|
symbol: 'DATA-71',
|
|
price: '1.011'
|
|
},
|
|
{
|
|
name: 'Title asset',
|
|
symbol: 'DATA-72',
|
|
price: '1.011'
|
|
},
|
|
{
|
|
name: 'Title asset Title asset Title asset Title asset Title asset Title asset Title asset Title asset Title asset Title asset',
|
|
symbol: 'DATA-71',
|
|
price: '1.011'
|
|
}
|
|
]
|