Debug issues with work item CRUD

This commit is contained in:
John Lyon-Smith
2018-04-06 14:59:18 -07:00
parent d646b9477b
commit 57f98ad398
14 changed files with 684 additions and 418 deletions

View File

@@ -1,7 +1,7 @@
import React, { Fragment, Component } from 'react'
import { Route, Redirect } from 'react-router-native'
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={'/workitemlist'} />)} />
return <Route render={() => <Redirect to={"/workitemlist"} />} />
}