Created
February 13, 2017 18:55
-
-
Save gCardinal/de368d40bd3502032585ce94f36aa565 to your computer and use it in GitHub Desktop.
This file contains 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
// Routing configuration | |
// All my imports | |
const defaultComponents = { | |
footer: FooterSection, | |
header: HeaderSection, | |
} | |
export default () => ( | |
<Route path='/'> | |
<IndexRedirect to='conversations' /> | |
<Route component={CoreLayout}> | |
<Route | |
path='conversations' | |
components={{ | |
...defaultComponents, | |
primary: ConversationsList, | |
placeholder: ConversationPlaceholder, | |
}} | |
/> | |
<Route | |
path='conversations/:id' | |
components={{ | |
...defaultComponents, | |
primary: ConversationsList, | |
secondary: Conversation, | |
}} | |
/> | |
</Route> | |
<Route component={SingleSectionLayout}> | |
<Route | |
path='*' | |
components={{...defaultComponents, content: NotFound}} | |
/> | |
</Route> | |
</Route> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment