Skip to content

Instantly share code, notes, and snippets.

View devrsingh2's full-sized avatar

Ramesh Singh devrsingh2

View GitHub Profile
@devrsingh2
devrsingh2 / index.jsx
Created October 17, 2019 12:10 — forked from avinmathew/index.jsx
Multiple layouts with React Router v4
import React from "react"
import { Route, Switch } from "react-router-dom"
const AppRoute = ({ component: Component, layout: Layout, ...rest }) => (
<Route {...rest} render={props => (
<Layout>
<Component {...props} />
</Layout>
)} />
)