Skip to content

Instantly share code, notes, and snippets.

@alexnm
Created March 25, 2018 11:48
Show Gist options
  • Save alexnm/70f0294da0b341144d5a759080180082 to your computer and use it in GitHub Desktop.
Save alexnm/70f0294da0b341144d5a759080180082 to your computer and use it in GitHub Desktop.
Routes config file
export default [
{
path: "/",
component: Home,
exact: true,
},
{
path: "/about",
component: About,
exact: true,
},
{
path: "/contact",
component: Contact,
exact: true,
},
{
path: "/secret",
component: Secret,
exact: true,
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment