const MainLayout = ({ children }) => (
<Wrapper>
<Header />
<Content>
{children}
</Content>
<Footer />
</Wrapper>
);
<Switch>
<Route exact path="/" component={Main} />
{/* остальные роуты */}
</Switch>
const Main = () => (
<MainLayout>
{/* тут содержимое страницы */}
</MainLayout>
);