Last active
April 17, 2020 14:52
-
-
Save jeandenis-k/3cb00242461ef14c84d12ff7d2c9592a 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
function App() { | |
return ( | |
<> | |
<Switch> | |
<Route path="/static_droid"> | |
<h1>Static droid page</h1> | |
<StaticPreview canvasStyle={canvasStyle} debug /> | |
</Route> | |
<Route exact path="/:packagingName?"> | |
<CreationContainer canvasStyle={canvasStyle} showDebugPanel /> | |
</Route> | |
</Switch> | |
</> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment