examples/helloworld/src/routes/async_fetching_mobx.ts
import { Route, RouteContext } from '@seagull/routes'
export default class TicTacToe extends Route {
static path = '/async-fetching/mobx'
static async handler(this: RouteContext) {
this.render('AsyncFetchingMobx', {
initialData: 'this will change after you click the button above',
})
}
}