Skip to content

GingerDragon7/CryptoVerse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cryptoverse - Explore the World of Cryptocurrency

Cryptoverse

cryptoverse-sunny

Project Set Up

  • Create a forked copy of this project.
  • Add your team as collaborator on Github.
  • Clone your OWN version of the repository in your terminal.
  • CD into the project base directory cd Project.
  • Download project dependencies by running npm install.
  • Start up the app using npm start.
  • Create a new branch: git checkout -b <firstName-lastName>.
  • Implement the project on your newly created <firstName-lastName> branch, committing changes regularly.
  • Push commits: git push origin <firstName-lastName>.

In the project directory, you can run:

npm install

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

API used: https://rapidapi.com.

Tech Used

Hooks are a new addition in React environment. They let you use state and other React features without writing a class. Hooks are the functions which "hook into" React state and lifecycle features from function components. By using useEffect Hook, you tell React that your component needs to do something after render. React will remember the function you passed (we'll refer to it as our “effect”), and call it later after performing the DOM updates.