App.js 256 B

12345678910
  1. import React from 'react'
  2. import { ExampleComponent } from '@rongmz/react-stock-heatmap'
  3. import '@rongmz/react-stock-heatmap/dist/index.css'
  4. const App = () => {
  5. return <ExampleComponent text="Create React Library Example 😄" />
  6. }
  7. export default App