showToast
Displays a popup message
import {showToast} from '@app/ui'
Properties
message: text
The text of the message
Examples
Display the message "Hello world" when clicking the button
<button
onClick={showToast("Hello world")}>
Click
</button>
<!-- TODO button -->