Setting Up an RTK Project
Explore how to initialize a Redux Toolkit project using create-react-app with the Redux template. Understand the starter folder structure, create a basic React component, and prepare a clean foundation for building the TweetFind Twitter search application.
We'll cover the following...
We'll cover the following...
If you choose to code along locally, then you can set up an RTK project by running the following command from your terminal:
npx create-react-app tweetfind --template redux
After successfully running that, change directories, and run the newly created tweetfind application:
cd tweetfind && npx yarn start
You should have a page similar to the following in your browser:
This is the starter default page for create-react-app using the redux template. It has redux-toolkit and react-redux installed with ...