UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

16 lines (13 loc) 303 B
interface Candidate{ firstName?: string; lastName? : string; photo? : string; salary? : number; selected? : boolean; } interface HistogramProps { candidates?: Candidate[]; multiplier: number; } declare const Histogram: React.ComponentType<HistogramProps>; export default Histogram;