react-native-template-lroman
Version:
react-native template to target multiple platforms.
10 lines (7 loc) • 359 B
JavaScript
import {Platform} from 'react-native';
const RouterPackage = (Platform.OS === 'web') ? require('react-router-dom') : require('react-router-native');
/*
* Remove Platform specific exports :/
* */
export const {Link, Route, Redirect} = RouterPackage;
export const Router = (Platform.OS === 'web') ? RouterPackage.BrowserRouter : RouterPackage.NativeRouter;