Toast (Notification)
Last updated
import { useContext } from 'react';
import { ViewContext, Button } from 'components/lib';
function MyComponent({ ...props }){
const viewContext = useContext(ViewContext);
return (
<div>
<Button
text='Show'
action={ () => {
viewContext.notification({
title: 'Hello!',
description: 'I am a notification.'
});
}}
}/>
</div>
);
}