// routes/configure.js /* I've been working so long in a react-router app that I'll have to spend more timein the docs * to actually set it up. But here's what I'm used to doing. Please note that we have been using a really * old version of react-router and I'm fully intending to get up to date on the new one. */ import React from 'react'; import { Route } from 'react-router'; import MenuTabs from './MenuTabs'; import contact from './contact'; export default function configureRoutes(store) { return ( ); }