Target tracking location, BoundHeader, WorkItem page done.

This commit is contained in:
John Lyon-Smith
2018-04-04 14:25:58 -07:00
parent 72af9a7035
commit e6bd1f8fed
18 changed files with 202 additions and 29 deletions

View File

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