Files
ionic-framework/packages/react/src/components/IonAlert.tsx
2020-12-07 09:31:33 -07:00

9 lines
271 B
TypeScript

import { AlertOptions, alertController } from '@ionic/core';
import { createControllerComponent } from './createControllerComponent';
export const IonAlert = /*@__PURE__*/ createControllerComponent<AlertOptions, HTMLIonAlertElement>(
'IonAlert',
alertController
);