Skip to content

Instantly share code, notes, and snippets.

@jeandenis-k
Last active April 17, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeandenis-k/3cb00242461ef14c84d12ff7d2c9592a to your computer and use it in GitHub Desktop.
Save jeandenis-k/3cb00242461ef14c84d12ff7d2c9592a to your computer and use it in GitHub Desktop.
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