This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { renderToStringAsync } from 'solid-js/web' | |
export function IndexPage() { | |
return <div>Here will be a landing. But now loading App.</div> | |
} | |
export async function render() { | |
const result = await renderToStringAsync(IndexPage) | |
return { | |
url: '/', |