react-kotlin-playground
Version:
React wrapper for kotlin playground
11 lines (7 loc) • 331 B
JavaScript
import { createElement as h } from "react";
import playground from "kotlin-playground";
import KotlinPlayground from "./component.mjs";
const ReactKotlinPlayground = (props) =>
h(KotlinPlayground, { playground, ...props });
ReactKotlinPlayground.propTypes = KotlinPlayground.propTypes;
export default ReactKotlinPlayground;