chart-race-react icon indicating copy to clipboard operation
chart-race-react copied to clipboard

fix export usage

Open imDrew259 opened this issue 2 years ago • 0 comments

Fixed the export default syntax. // this is incorrect export syntax export default data = [ ... ] The correct export syntax is

export default [

] or, we can use const data = [ ] export default data

imDrew259 avatar Mar 22 '22 07:03 imDrew259