UNPKG

@kiwicom/smart-faq

Version:

14 lines (10 loc) 271 B
// @flow import * as React from 'react'; import { MemoryRouter } from 'react-router-dom'; type Props = { children: React.Node, }; const ComponentWithRouter = ({ children }: Props) => ( <MemoryRouter>{children}</MemoryRouter> ); export default ComponentWithRouter;