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
Update WhatsNewModal/index.js to parse and render data from whatsNewList.js
Update whatsNewList.js with template system
- Slides utilizes a templating system in the form of a 2D array, which is eventually rendered within app/components/UI/WhatsNewModal/index.js.
- The root layer determines the number of slides. Ex. To display 3 slides, the root layer should contain 3 arrays.
- The inner layer determines the content that will be rendered within each slide.
- The slide content takes the form of union types, where the possible types are `image`, `title`, `description`, or `button`.
- Both slide count and slide content will be rendered in the same order as the data set.
Acceptance Criteria
Template system should support any number of slides
It should also support any order of the union types
Description
Update What's New Modal to use templating system
Technical Details
WhatsNewModal/index.js
to parse and render data fromwhatsNewList.js
whatsNewList.js
with template systemAcceptance Criteria
References
The text was updated successfully, but these errors were encountered: