UNPKG

react-to-component

Version:

Blazing fast library to componentify imperative or functional apis

7 lines (6 loc) 190 B
import * as React from "react"; import { Props } from "./types"; export { Props }; export default class ToComponent<T, P> extends React.Component<Props<T, P>> { render(): JSX.Element; }