@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
9 lines (8 loc) • 301 B
TypeScript
import React from 'react';
import { ChartProps } from './types';
/**
* The Chart component serves as a unified interface for rendering all available chart types in MUI X,
* providing flexibility and simplicity in chart selection.
*/
declare const Chart: React.FC<ChartProps>;
export default Chart;