How to use the kpc-react/components/message.info function in kpc-react

To help you get started, we’ve selected a few kpc-react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ksc-fe / kpc / components / pagination / demos / current / index.jsx View on Github external
_fetch1(c, current) {
        // fetch data
        this.setState({current1: current});
        Message.info(`current page: ${current}`);
    }
github ksc-fe / kpc / components / message / demos / duration / index.jsx View on Github external
showMessage1() {
        Message.info('close after 10s', 10000);
    }
github ksc-fe / kpc / components / pagination / demos / current / index.jsx View on Github external
_fetch2({current, limit}) {
        Message.info(`current page: ${current}, limit: ${limit}`);
    }