Add base64 upload support

This commit is contained in:
John Lyon-Smith
2018-04-25 17:43:32 -07:00
parent 0184481a7f
commit 3ddb9ebc2d
11 changed files with 703 additions and 221 deletions

View File

@@ -3,5 +3,5 @@ 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"} />} />
return <Route render={() => <Redirect to={"/workItem"} />} />
}