Skip to content

Instantly share code, notes, and snippets.

@jsoneaday
Created January 14, 2020 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsoneaday/d9d0484dff0f8871bfb65ee01e22b3ce to your computer and use it in GitHub Desktop.
Save jsoneaday/d9d0484dff0f8871bfb65ee01e22b3ce to your computer and use it in GitHub Desktop.
import React from "react";
import {
IonContent,
IonGrid,
IonRow,
IonCol,
IonPage,
IonHeader,
IonToolbar,
IonTitle,
IonText
} from "@ionic/react";
const Photos: React.FC = () => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle>Photos</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent>
<IonGrid>
<IonRow>
<IonCol size-md="6" offset-md="3" className="ion-text-center">
<IonText>test</IonText>
</IonCol>
</IonRow>
</IonGrid>
</IonContent>
</IonPage>
);
};
export default Photos;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment