Skip to content

Instantly share code, notes, and snippets.

@yudium
Created June 7, 2020 00:34
Show Gist options
  • Save yudium/0f2138fb15e846697a102a39dc053952 to your computer and use it in GitHub Desktop.
Save yudium/0f2138fb15e846697a102a39dc053952 to your computer and use it in GitHub Desktop.
// ... many import here
import { Theme } from "./theme";
const App = () => (
<Theme choice="dark">
<AnyRoute path="/" exact layout={Default} component={HomePage} />
<AnyRoute path="/tweet" exact layout={Default} component={TweetPage} />
</Theme>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment