A component that will allow you to render all kinds of messages meant to be used
in forms: error states, warnings and success confirmations. To use, import from
@marvelapp/ui
:
import { Message } from '@marvelapp/ui';
The <Message />
component has a few kinds available that can be used depending
on the context of the action being performed.
<Message kind="information">
<Text>
I am designed to give you some additional information about stuff.
</Text>
</Message>
<Message kind="error">
<Text>
Whereas I will let you know when there's a problem of sorts.
</Text>
</Message>
<Message kind="success">
<Text>
I will congratulate you upon succeeding!
</Text>
</Message>