Skip to content

Instantly share code, notes, and snippets.

@bonnie
Last active March 31, 2021 19:04
Show Gist options
  • Save bonnie/c7430533a674188006c305e3772894f0 to your computer and use it in GitHub Desktop.
Save bonnie/c7430533a674188006c305e3772894f0 to your computer and use it in GitHub Desktop.
const MemoryRouterWithInitialRoutes = ({ children, initialRoutes }) => {
return (
<MemoryRouter initialEntries={initialRoutes}>
{children}
</MemoryRouter>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment