UNPKG
common-ui-components-lib
Version:
latest (1.0.0)
1.0.0
React UI components including JsonGrid and MultiSelectDropdown
common-ui-components-lib
/
dist
/
components
/
JsonGrid.d.ts
8 lines
(7 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
import
'./JsonGrid.css'
;
export
interface
JsonGridProps
{
data
:
Record
<
string
,
any
>[] |
Record
<
string
,
any
>; }
declare
const
JsonGrid
:
React
.
FC
<
JsonGridProps
>;
export
default
JsonGrid
;