export default class PageRoute extends Route {
  static path = '/page'
  static async handler(this: RouteContext) {
    this.render('HelloPage', { name: 'John' })
  }