17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
import React, { useState } from 'react';
|
|
import { IonModal, IonButton, IonContent } from '@ionic/react';
|
|
|
|
export const ModalExample: React.FC = () => {
|
|
const [showModal, setShowModal] = useState(true);
|
|
|
|
return (
|
|
<IonContent>
|
|
<IonModal isOpen={showModal}>
|
|
<p>This is modal content</p>
|
|
<IonButton onClick={() => setShowModal(false)}>Close Modal</IonButton>
|
|
</IonModal>
|
|
</IonContent>
|
|
);
|
|
};
|
|
|
|
export default ModalExample; |