team01-6e - Adding the Create and Edit Pages
In this step, you’ll add:
- a file similar to
RestaurantCreatePage.js
that provides a page for creating a new restaurant. - a file similar to
RestaurantCreatePage.test.js
that provides test coverage that page. - a file similar to
RestaurantEditPage.js
that provides a page for editing an existing restaurant. - a file similar to
RestaurantEditPage.test.js
that provides test coverage for the edit page.
Arguably, we should also perhaps add a storybook entries for the RestaurantCreatePage
and RestaurantEditPage
. We’ll omit that from this assignment, but we’ll be sure to include in future assignments.
Understanding frontend/src/main/pages/Restaurants/RestaurantCreatePage.js
Coming soon!
Understanding frontend/src/tests/pages/Restaurants/RestaurantCreatePage.test.js
Coming soon!
Understanding frontend/src/main/pages/Restaurants/RestaurantEditPage.js
Coming soon!
Understanding frontend/src/tests/pages/Restaurants/RestaurantEditPage.test.js
Coming soon!