-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add User Table (#2) #13
Conversation
- Move sample_data.json into src/ so it can be used in SampleTableDashboard
It doesn't like how I'm importing a JSON file. While this just displays a warning by ESLint when running locally, it becomes a problem here. I'm not sure what's the best course of action to fix this. I could mess with the ESLint config or see if there's another way to import the file that won't run afoul of ESLint. |
@cengelbart39 You can run |
@miguel-merlin I get |
@miguel-merlin Any thoughts on this? |
@cengelbart39 We deployed our backend last week; instead of fetching stuff from the JSON, you can use the API. You'll find it in the |
@cengelbart39 I disabled the linter error for now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job! Thanks for contributing
@cengelbart39 Merged! |
Adds a Chakra UI Table containing data from
sample_data.json
.Sorts users by name alphabetically and only shows active users.
Closes #2.