Display a notification message globally.
2
const trigger = () => notify('Here is your Info.');
3
const triggerSuccess = () => notify.success('Here is your success message.');
4
const triggerError = () => notify.error('Here is your error message.');
5
const triggerLoading = () => notify.loading('Here is your error message.');
9
<Button onClick={trigger}>Blank</Button>
10
<Button onClick={triggerSuccess}>Success</Button>
11
<Button onClick={triggerError}>Error</Button>
12
<Button onClick={triggerLoading}>Loading</Button>
14
<Notify position="top-right" />
4
'Here is your toast.Here is your toast.Here is your toast.Here is your toast.Here is your toast.Here is your toast.Here is your toast.'
8
<Button onClick={trigger}>Make me a toast</Button>
9
<Notify position="top-right" />
3
const trigger = () => {
4
notifyId = notify.loading('uploading...');
8
notify.success('upload success !', { id: notifyId });
14
<Button onClick={trigger}>Make me a notify</Button>
15
<Button onClick={update}>Update the notify</Button>
17
<Notify position="top-right" />