UNPKG

parliament-chart

Version:

react-parliament-chart is a customizable React component that displays a parliament chart for visualizing the composition of a legislative body. With support for party colors and seat count, this component can be easily customized to match your needs. The

7 lines (6 loc) 156 B
/// <reference types="react" /> type Props = { value?: number; }; declare const MyCounter: ({ value }: Props) => JSX.Element; export default MyCounter;