import React from "react" import { Route, Switch } from "react-router-dom" const AppRoute = ({ component: Component, layout: Layout, ...rest }) => ( ( )} /> ) const MainLayout = props => (

Main

{props.children}
) const AltLayout = props => (

Alt

{props.children}
) const Foo = () => (

Foo

) const Bar = () => (

Bar

) const App = () => (
)