Skip to main content
Module

x/alosaur/examples/react/engine.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import { getPage } from "./views/app.tsx";
class ReactSSREngine { public render(path: string, model: Object) { return getPage(path, model); }}
export const engine = new ReactSSREngine();