Skip to content

Instantly share code, notes, and snippets.

@infantiablue
Created April 28, 2021 09:18
Show Gist options
  • Save infantiablue/f84759c63304a717a370981197846216 to your computer and use it in GitHub Desktop.
Save infantiablue/f84759c63304a717a370981197846216 to your computer and use it in GitHub Desktop.
const [latestPrice, setLatestPrice] = useState(0);
useEffect(() => {
fetchData().then((chartData) => {
initChart(chartData);
setLatestPrice(parseFloat(chartData.price[chartData.price.length - 1]).toFixed(2));
});
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment