Skip to content

Instantly share code, notes, and snippets.

@Cerwyn
Created June 26, 2021 10:57
Show Gist options
  • Save Cerwyn/689d22953dc9e635d746c50a77f0852f to your computer and use it in GitHub Desktop.
Save Cerwyn/689d22953dc9e635d746c50a77f0852f to your computer and use it in GitHub Desktop.
preact
import { html } from 'htm/preact';
import { Router } from 'preact-router';
import Header from './header';
// Code-splitting is automated for `routes` directory
import Home from '../routes/home';
import Profile from '../routes/profile';
const App = () => {
return html`
<div id="app">
<${Header} />
<${Router}>
<${Home} path="/" />
<${Profile} path="/profile/" user="me" />
<${Profile} path="/profile/:user" />
</${Router}>
</div>
`;
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment