You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
317 B

'use strict';
import React from 'react';
import Router, {Route, NotFoundRoute, DefaultRoute} from 'react-router';
import App from './App';
import Site from './ui/Site';
var routes = (
<Route name="app" path="/*" handler={ App } >
<DefaultRoute name="site" handler={ Site } />
</Route>
);
export default routes;