๐Ÿ“ฆ mlynch / ionic-react-routing-case

๐Ÿ“„ ResetPassword.tsx ยท 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21import React from 'react';
import { IonHeader, IonToolbar, IonTitle, IonContent, IonLabel } from '@ionic/react';

interface ResetPasswordPageProps {}

const ResetPasswordPage: React.SFC<ResetPasswordPageProps> = () => {
  return (
    <IonContent>
      <IonHeader>
        <IonToolbar>
          <IonTitle>Title</IonTitle>
        </IonToolbar>
      </IonHeader>
      <IonContent>
        <IonLabel>Reset your password, yo</IonLabel>
      </IonContent>
    </IonContent>
  );
};

export default ResetPasswordPage;