UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

14 lines (9 loc) 280 B
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; }