import { RendererProps } from "../types"; import { RS } from "./common"; export const Renderer = ({ state }: RendererProps) => { return state == null ? null :

state.value

; };