UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact)

10 lines (7 loc) 255 B
import * as React from 'react'; interface RowRadioButtonProps { rowData?: object; selected?: boolean; onClick?(e: {originalEvent: Event, data: object}): void; } export class RowRadioButton extends React.Component<RowRadioButtonProps,any> {}