// @flow /* eslint-disable import/no-extraneous-dependencies */ import React from 'react' import { Route, Switch as RRSwitch } from 'react-router' const Switch = ({ routesAndCmps }: { routesAndCmps: Object[] }) => ( {routesAndCmps.map(({ route, component: Component }) => { const { path, exact, ...rest } = route return ( } /> ) })} ) export default Switch