A lightweight react component that gets stock data periodically and displays a list of stocks that crawls from right to left. It uses the Finnhub API [(https://finnhub.io/docs/api)](https://finnhub.io/docs/api) to fetch the stock data, hence, an api key
npm install react-stock-crawlerA lightweight react component that gets stock data periodically and displays a list of stocks that crawls from right to left.
It uses the Finnhub API (https://finnhub.io/docs/api) to fetch the stock data, hence, an api key is needed to use this component which will be passed in through props.
npm install react-stock-crawler
npm install react-ticker
stocks A list of stocks represented by their ticker symbol (Maximum Length = 7)
apiKey Your api key to use the Finnhub API
import StockCrawler from 'react-stock-crawler/dist'
function App() {
return (
);
}
export default App;
``