You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instructions: Create a <SearchResults /> component that shows hotel bookings in a <table> element. Each booking will have an id, title, first name, surname, email, room id, check in date and check out date. You can make up data in the <SearchResults /> component to show in the table. Then show <SearchResults /> component within the <Bookings /> component that is provided. Be sure to split out your components into small well-named components.
Hint: Look in the <Bookings /> component for how to import data from a JSON file.
AS A TEAM
This ticket is too large. Break down this ticket into smaller, well named components, just like we did with Search and SearchButton, Card and Deck, App and AppHeader.
Write your tickets and share them out. You should try to pair on this larger feature as much as you can. Use class time if you can.
From React-Module-Project created by SallyMcGrath: CodeYourFuture#6
Create a table to show hotel bookings
Instructions: Create a
<SearchResults />
component that shows hotel bookings in a<table>
element. Each booking will have anid
,title
,first name
,surname
,email
,room id
,check in date
andcheck out date
. You can make up data in the<SearchResults />
component to show in the table. Then show<SearchResults />
component within the<Bookings />
component that is provided. Be sure to split out your components into small well-named components.Hint: Look in the
<Bookings />
component for how to import data from a JSON file.AS A TEAM
This ticket is too large. Break down this ticket into smaller, well named components, just like we did with Search and SearchButton, Card and Deck, App and AppHeader.
Write your tickets and share them out. You should try to pair on this larger feature as much as you can. Use class time if you can.
Hint: You will find some useful
<table>
examples in the Bootstrap documentation for tables.Test:
The text was updated successfully, but these errors were encountered: