Files
ionic-framework/react/src/components/IonAlert.tsx
Josh Thomas f46cd507c2 feat(react): complete controller integrations and navigation (#16849)
* fix(react): correct controller types and reexport AlertOptions.

* feat(): add Ion Stack and Tabs navigation items based on React Router.

* rework tabs and add router outlet

* fixes to the outlet rendering.

* add direction as state

* fixed transitions

* Update to core rc2.
2019-01-22 14:09:58 -06:00

8 lines
346 B
TypeScript

import { Components } from '@ionic/core';
import { createControllerComponent } from './createControllerComponent';
export type AlertOptions = Components.IonAlertAttributes;
const IonAlert = createControllerComponent<AlertOptions, HTMLIonAlertElement, HTMLIonAlertControllerElement>('ion-alert', 'ion-alert-controller')
export default IonAlert;