/** * External dependencies */ import { Icon, help } from '@wordpress/icons'; import { Panel, PanelBody as PanelBodyBase } from '@wordpress/components'; /** * Internal dependencies */ import strings from './strings'; const PanelBody: React.FC< PanelBodyBase.Props > = ( props ) => { return ; }; const FrequentlyAskedQuestions: React.FC = () => { return (

{ strings.faq.faqHeader }

{ strings.faq.question1Answer1 }

{ strings.faq.question1Answer2 }

{ strings.faq.question2Answer1 }

  • { strings.faq.question3Answer1 }
  • { strings.faq.question3Answer2 }
  • { strings.faq.question3Answer3 }
  • { strings.faq.question3Answer4 }

{ strings.faq.question4Answer1 }

{ strings.faq.question4Answer2 }

{ strings.faq.question5Answer1 }

{ strings.faq.question5Answer2 }

{ strings.faq.question6Answer1 }

{ strings.faq.question6Answer2 }

{ strings.faq.question6Answer3 }

{ strings.faq.question6Answer4 }

{ strings.faq.question6Answer5 }

{ strings.faq.question7Answer1 }

  • { strings.faq.question7Answer2 }
  • { strings.faq.question7Answer3 }
  • { strings.faq.question7Answer4 }
  • { strings.faq.question7Answer5 }
  • { strings.faq.question7Answer6 }
  • { strings.faq.question7Answer7 }
  • { strings.faq.question7Answer8 }
  • { strings.faq.question7Answer9 }
  • { strings.faq.question7Answer10 }

{ strings.faq.question7Answer11 }

{ strings.faq.question7Answer12 }

{ strings.faq.question7Answer13 }

{ strings.faq.question8Answer1 }

{ strings.faq.question8Answer2 }

  • { strings.faq.question8Answer3 }
  • { strings.faq.question8Answer4 }
  • { strings.faq.question8Answer5 }
  • { strings.faq.question8Answer6 }
  • { strings.faq.question8Answer7 }
  • { strings.faq.question8Answer8 }
  • { strings.faq.question8Answer9 }

{ strings.faq.question8Answer10 }

{ strings.faq.haveMoreQuestions } { strings.faq.getInTouch }
); }; export default FrequentlyAskedQuestions;