From the course: Building Modern Projects with React

Unlock this course with a free trial

Join today to access over 24,800 courses taught by industry experts.

Creating the TodoList component

Creating the TodoList component - React.js Tutorial

From the course: Building Modern Projects with React

Creating the TodoList component

- [Instructor] So now that we've met the project that we're going to be using in order to demonstrate a lot of these tools that we'll be talking about in this course, let's actually get started and create this application. All right, now we could use any of the tools that we saw previously, Create React app, Next.js, Remix, or Vite, or you could actually even use this project that we created from scratch. But I'm going to use Vite frankly just because it's the easiest and least opinionated and it's also the one that's recommended currently on React's websites. So what I'm going to do here is I'm going to use Vite to create a new React app. So here's what this is going to look like. I'm just going to say "npm create vite@latest" and let's hit Enter here, and that's going to ask us the same few questions. The only thing that we're really going to do differently here is for the project name, we'll call this something like todo-list-app, all right? Then, we're going to select React for…

Contents