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)

13 lines (11 loc) 257 B
import * as React from 'react'; interface CardProps { id?: string; header?: any; footer?: any; title?: string; subTitle?: string; style?: object; className?: string; } export class Card extends React.Component<CardProps,any> {}