UNPKG

npmtestpackricky

Version:
8 lines (7 loc) 202 B
import * as React from "react"; import { ReactNode } from "react"; type PropsType = { children: ReactNode; }; declare function Button({ children }: PropsType): React.JSX.Element; export { Button };