Dulce-Work-Schedule/2018.1-Dulce_App

View on GitHub
src/Navigators/ProfileScheduleNavigation.js

Summary

Maintainability
A
0 mins
Test Coverage
import ProfileSchedule from '../Screens/ProfileSchedule';
import {StackNavigator} from 'react-navigation';

const routes = {
  sector: {
    screen: ProfileSchedule,
    navigationOptions: {
      header: null
    }
  }
};

const config = {};

const ProfileScheduleNavigation = StackNavigator(routes, config);

export default ProfileScheduleNavigation;