7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
import * as React from "react"
|
|
import { Root } from "./root"
|
|
|
|
export async function render(url: string) {
|
|
return <Root />
|
|
}
|