import React from 'react'; import { IonList, IonItem, IonLabel } from '@ionic/react'; interface AboutPopoverProps { dismiss: () => void; } const AboutPopover: React.FC = ({ dismiss }) => { const close = (url: string) => { window.open(url, '_blank'); dismiss(); }; return ( close('https://ionicframework.com/docs')}> Learn Ionic close('https://ionicframework.com/docs/react')} > Documentation close('https://showcase.ionicframework.com')} > Showcase close('https://github.com/ionic-team/ionic-framework')} > GitHub Repo Support ); }; export default AboutPopover;