Created
January 26, 2019 00:00
-
-
Save scottdomes/30950e0602498bee775d5b0e13962bb1 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 App = () => { | |
return ( | |
<Router> | |
<React.Fragment> | |
<Route path="/apollo" component={ApolloMain} /> | |
<Route path="/relay" component={RelayMain} /> | |
</React.Fragment> | |
</Router> | |
); | |
}; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is
<React.Fragment>
necessary here? The Component would work without it.