Getting Started with a 3D React Workflow
Dependencies Gatsby & Sass plugin ThreeJS React-Three-Fiber Zustand Environment setup Let’s start with a Gatsby boilerplate project. Go into command line of your favorite directory and type: gatsby new my-hello-world-starter https://github.com/gatsbyjs/gatsby-starter-hello-world After installation, let’s add our needed dependencies to our project: cd my-hello-world-starter
 yarn add three react-three-fiber zustand && yarn add node-sass gatsby-plugin-sass -D … Continued