• File Location

    • src/screens/SupportModule/FAQScreen.js

  • Data

    • If you’d like to change the data present on this screen, please locate the render accordion function.

      • src/screens/SupportModule/FAQScreen/FAQScreen.js
      • Here you should see that we are grabbing FAQList information from the state, that gets its data from src/DummyData/FAQDummyData.js
    • Create/Edit/Delete items and observe how the page changes. You can add more items like this and the page will automatically become scrollable.

      data: [
          {
            title: 'LOREM IPSUM DOLOR',
            description:
              'Quisque sit amet felis vitae elitbibendum sollicitudin. Fusce sit amet enim viverra, pellentesque libero eu, gravida leo. Pellentesque eu nisl vestibulum, eleifend mi vel, molestie ante.  Praesent id mauris nisl. Nunc aliquam turpis in rhoncus consequat. Curabitur et gravida enim, a ullamcorper massa. ',
          }
          ...
      ]