UNPKG
@vallarj/react-adminlte
Version:
latest (0.9.5)
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.5
0.8.4
0.8.3
0.8.2
Simple and easy-to-use AdminLTE components for React
gitlab.com/jdvallar/react-adminlte
@vallarj/react-adminlte
/
DataTable
/
DataTableRow.d.ts
14 lines
(9 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
*
as
React
from
'react'
;
export
interface
DataTableRowProps
{
className
?:
string
;
object
?:
any
;
onClick
?:
(
...
args
:
any
[]
)=>
any
; }
export
default
class
DataTableRow
extends
React.Component
<
DataTableRowProps
,
any
> {
render
():
JSX
.
Element
; }