UNPKG

yahoi

Version:

Yet Another Highly Opinionated Isomorphic Framework

12 lines (8 loc) 244 B
import { Controller } from 'yahoi'; import React from 'react'; export default class IndexController extends Controller { constructor(props) { super(props); } async IndexAction(parameters) { this.redirect('/examples/client'); } }