seagull-js/seagull

View on GitHub
examples/helloworld/src/routes/tic_tac_toe.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Route, RouteContext } from '@seagull/routes'

export default class TicTacToe extends Route {
  static path = '/games/tic-tac-toe'
  static async handler(this: RouteContext) {
    this.render('TicTacToe', {})
  }
}