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
BrenekH opened this issue
Oct 2, 2024
· 0 comments
Assignees
Labels
frontendFor issues/tasks related to the frontendtsFor issues/tasks that require TypeScriptuiFor issues/tasks related to the user interfaceuxFor issues/tasks related to the user experience
A List component should be created in src/app/components/list.tsx.
The List component should have the props:
books which is of type Array<BookType>
name which is of type string
It should return a div which contains a header, for the name of the list, and an unordered list where each list item is an item in the books prop array.
books[0] should be the first element, books[1] should be the second, ..., books[books.length] should the nth element.
The text was updated successfully, but these errors were encountered:
Dylan-Gresham
added
frontend
For issues/tasks related to the frontend
ui
For issues/tasks related to the user interface
ux
For issues/tasks related to the user experience
ts
For issues/tasks that require TypeScript
labels
Oct 2, 2024
frontendFor issues/tasks related to the frontendtsFor issues/tasks that require TypeScriptuiFor issues/tasks related to the user interfaceuxFor issues/tasks related to the user experience
Task for story #4
Task Description
A
List
component should be created insrc/app/components/list.tsx
.The
List
component should have the props:books
which is of typeArray<BookType>
name
which is of typestring
It should return a div which contains a header, for the name of the list, and an unordered list where each list item is an item in the
books
prop array.books[0]
should be the first element,books[1]
should be the second, ...,books[books.length]
should the nth element.The text was updated successfully, but these errors were encountered: