8 lines
293 B
JavaScript
8 lines
293 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={'/workitemlist'} />)} />
|
|
}
|