mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
27 lines
532 B
JavaScript
27 lines
532 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Router from 'react-router';
|
|
|
|
import Landing from './components/landing';
|
|
|
|
import App from './app';
|
|
import AppConstants from '../../../constants/application_constants';
|
|
|
|
let Route = Router.Route;
|
|
let baseUrl = AppConstants.baseUrl;
|
|
|
|
|
|
function getRoutes(commonRoutes) {
|
|
return (
|
|
<Route name="app" path={baseUrl} handler={App}>
|
|
<Route name="landing" path="/" handler={Landing} />
|
|
|
|
{commonRoutes}
|
|
</Route>
|
|
);
|
|
}
|
|
|
|
|
|
export default getRoutes;
|