UNPKG

@90pixel/react-dynamic-table

Version:
10 lines (9 loc) 261 B
import { HTMLAttributes } from "react"; interface Props extends HTMLAttributes<HTMLDivElement> { /** * Test Naming */ type: "multiply" | "divide"; } declare function Component({ type, ...props }: Props): JSX.Element; export default Component;