Add script to generate files for new language

This commit is contained in:
Nilay Majorwar
2022-01-30 20:32:50 +05:30
parent 3889b97df5
commit 0bf7c0de3a
9 changed files with 184 additions and 2 deletions

View File

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