Files
deighton-ar/mobile/src/Auth/DefaultRoute.js
John Lyon-Smith 30a66e4e34 Few more bug fixes
2018-04-23 15:16:56 -07:00

8 lines
283 B
JavaScript

import React, { Fragment, Component } from "react"
import { Route, Redirect } from "react-router-native"
export const DefaultRoute = () => {
// NOTE: When working on the app, change this to the page you are working on
return <Route render={() => <Redirect to={"/home"} />} />
}