[wip] Add Rockstar

This commit is contained in:
Nilay Majorwar
2022-02-02 21:09:00 +05:30
parent 69553b7087
commit 0befc7369a
12 changed files with 537 additions and 2 deletions

View File

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