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
E-Board members need an organized and structured table to visualize the list of existing members within the Members section. This table will allow users to easily find members and their specific details.
In order to display this information, you will need to implement a table component that includes the following columns:
Member Name: The name of the member
E-mail: The e-mail address of the member
Member Role: The role of the member.
GitHub username: The username in GitHub of the member.
Class Standing: The academic level of the member (e.g., Freshman, Sophomore, Junior or Senior)
Date joined: The specific date (format: MM/DD/YYYY) the member joined.
isActive: Boolean that indicates whether the member is active or not.
Definition of Done
Add a new page called Members.ts
Add the page to the Sidebar component
Use the Chakra UI Table component to implement this feature
Notes on implementation
We use ChakraUI as our component library. You can use their Table component for this task. The endpoints to retrieve the events have not been created yet, however you can use the example members list in the data/seed.ts file. You can assume that the API will return a list of Member objects.
The text was updated successfully, but these errors were encountered:
IvanFarfan08
changed the title
Implement member search bar and table component
Member Table Component
Feb 5, 2025
Description
E-Board members need an organized and structured table to visualize the list of existing members within the Members section. This table will allow users to easily find members and their specific details.
In order to display this information, you will need to implement a table component that includes the following columns:
Definition of Done
Members.ts
Sidebar
componentTable
component to implement this featureNotes on implementation
We use ChakraUI as our component library. You can use their Table component for this task. The endpoints to retrieve the events have not been created yet, however you can use the example members list in the
data/seed.ts
file. You can assume that the API will return a list ofMember
objects.The text was updated successfully, but these errors were encountered: