Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created March 29, 2019 17:48
Show Gist options
  • Save ntakouris/b8ba09a0f710cd6a3a27842637bd4953 to your computer and use it in GitHub Desktop.
Save ntakouris/b8ba09a0f710cd6a3a27842637bd4953 to your computer and use it in GitHub Desktop.
const AppRoutes = {
Home: {
path: '/',
name: 'Home',
component: Home
},
NodeDetails: {
path: '/nodes/:nodeId',
name: 'Node Details',
component: NodeInfoPage,
props: true
},
GlobalRegisterView: {
path: '/registers',
name: 'Global Register View',
component: GlobalRegisterView
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment