UNPKG

react-show-data

Version:

A light-weight react toast component built for mobile web app

15 lines (14 loc) 294 B
import * as React from "react"; interface IDataJson { data?: any; isFix?: boolean; isShow?: boolean; } export default class extends React.Component<IDataJson, any> { state: { isShow: boolean; }; componentDidMount(): void; render(): JSX.Element; } export {};