-
Couldn't load subscription status.
- Fork 16
Restructure "Resources", replace "Research" with "Readings" in Resources, and add dummy data for Resources #30
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
Conversation
|
Updates Resource.js to reference Tutorials, Readings, and Organizations JS files instead of containing JSX itself. This improves compartmentalization and prevents us from making as many conflicting changes in Resource.js. |
|
Can you add more data to each tab? It would be nice when there are at least 10 items per tab in order to test upcoming features including pagination, filter, (sort and search). |
|
Resolve issue #14 |
|
Yeah I can add more data to each tab. |
38382ba to
cdb344e
Compare
fd4d5ff to
caa479f
Compare
| import React from 'react'; | ||
| import './resources.css'; | ||
|
|
||
|
|
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.
Please remove a blank line
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.
Your PR looks good. Just remove a blank line after imports and you're good to go.
|
Yeah I need to totally reset this with all the prettier and linter changes and make sure it's all cleanup before I'll merge |
JSX will be contained in individual files instead of directly in Resources for compartmentalization
-Includes 11 entries per section in order to test pagination in the future -Tutorials fields: id, title, description, url, tags -Readings fields: id, title, publicationDate, description, url, tags -Organizations fields: id, title, description, url, tags
1abfc21 to
d825827
Compare
Mappings for Resource's dummy data:
Tutorials: id, title, description, url, tags
Readings: id, title, publicationDate, description, url, tags
Organizations: id, title, description, url, tags