2022-01-30 20:32:50 +05:30

8 lines
204 B
TypeScript

// @ts-nocheck
import { RendererProps } from "../types";
import { RS } from "./common";
export const Renderer = ({ state }: RendererProps<RS>) => {
return state == null ? null : <p>state.value</p>;
};