Summary
In this chapter, we made a start on our to-do application. We added our data table, which fetches data from our data model. We created a form that allows us to add data to our data table. We also encountered interactions for the first time, which allow you to dynamically change components on your page by configuring an event that will fire on a specific occurrence, for example, clicking a button or the completion of an action. Then the interaction will perform a function targeting a specific component. The function could be showing, hiding, or refetching data from the data model.
In the next chapter, we’ll learn how to add a create, update, and delete flow to our application. We’ve now set up the basics for this application.