Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.06 KB

README.md

File metadata and controls

26 lines (17 loc) · 1.06 KB

Intro to GraphQL with React

Hi there! Let's learn some more about React and GraphQL. If you want to follow along, do the following:

  1. Check out this Apollo Launchpad. We will use this as our server to pull data.
  2. Clone this repository
  3. yarn install or npm install
  4. yarn start or npm start
  5. Go to localhost:3000 in your browser
  6. Follow along or forge your own path :)

To follow along with my slides, check out this Dropbox Paper.


More about this repo

  • This is effectively create-react-app with a little clean up, some styles, and some packages to make getting up and running with GraphQL easier.
  • All code regarding making queries and rendering stuff goes down in the /components folder.
  • All code regarding setting up the app goes down in index.js and App.js.

For part 1 of this demo, go here.