Skip to content

It's a All in One Crypto App which shows Exchanges, Cryptocurrencies, Crypto News, and Crypto Statistics and more.

Notifications You must be signed in to change notification settings

prashant2808/cryptonova_react_app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CryptoNova - Explore the World of Cryptocurrency

About Application

It's a All in One Crypto App which shows Exchanges, Cryptocurrencies, Crypto News, and Crypto Statistics and more.

This Application is build on React and Redux Toolkit. Fetching Data from RapidAPI. Ant Design is also used for UI components.

APIs

  1. CoinRanking
  2. Bing News

How to use Redux Toolkit Query to fetch Data

  1. Create a folder named services main folder for fetching data.

  2. Inside there create a new file named cryptoApi.

  3. Before anything else, We're gonna have to create a Store which is the centralized storage to store every state and data in it. So, we can get it in our entire Application whenever we want, easily.

  4. Now Create folder named app in src and inside there a file named store.js. This will gonna be the Redux Store.

  5. And see the store.js for code information.

  6. Now Import Store from store.js and Provider from RTK inside our main index.js

  7. And Wrap the whole app inside provider like mine.

  8. Now we can write data fetching functionality inside cryptoApi.js.

  9. After writing the code import that functionality in store.js

  10. Now our Application is fully connected and we just have to fetch whatever data we want.