UNPKG

@ansible/react-json-chart-builder

Version:

A chart builder component in react, which uses JSON for schema.

8 lines (7 loc) 232 B
import { FunctionComponent } from 'react'; import { ChartInterface } from '../types'; interface Props extends ChartInterface { id: number; } declare const CreatePieChart: FunctionComponent<Props>; export default CreatePieChart;