import { h, VNode } from "preact"; import { useAnastasisContext } from "../../context/anastasis"; import { AnastasisClientFrame } from "./index"; export function StartScreen(): VNode { const reducer = useAnastasisContext() if (!reducer) { return
no reducer in context
} return (
); }