mirror of
https://github.com/bendtherules/preact-publicpath-bug.git
synced 2026-08-18 13:52:50 +00:00
33 lines
757 B
JavaScript
33 lines
757 B
JavaScript
import { h, Component } from 'preact';
|
|
import { Router } from 'preact-router';
|
|
|
|
import Header from './header';
|
|
|
|
// Code-splitting is automated for routes
|
|
import Home from '../routes/home';
|
|
import Profile from '../routes/profile';
|
|
|
|
export default class App extends Component {
|
|
|
|
/** Gets fired when the route changes.
|
|
* @param {Object} event "change" event from [preact-router](http://git.io/preact-router)
|
|
* @param {string} event.url The newly routed URL
|
|
*/
|
|
handleRoute = e => {
|
|
this.currentUrl = e.url;
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<div id="app">
|
|
<Header />
|
|
<Router onChange={this.handleRoute}>
|
|
<Home path="/" />
|
|
<Profile path="/profile/" user="me" />
|
|
<Profile path="/profile/:user" />
|
|
</Router>
|
|
</div>
|
|
);
|
|
}
|
|
}
|