...

/

Setting Up an RTK Project

Setting Up an RTK Project

Set up a new Redux toolkit project from scratch.

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 ...