Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 388 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 388 Bytes

React Toast UI Chart Component

install

yarn add react-tui-chart

usage

import Toast from 'react-tui-chart';
import React from 'react';

const ChartPage = (props)=>{
    return (
        <Toast
            id={"first"}
            data=props.data 
            options=props.options 
            chartType={"barChart"} 
        />
    )
}