Created
March 29, 2019 17:48
-
-
Save ntakouris/b8ba09a0f710cd6a3a27842637bd4953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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