import * as React from 'react'; import InlineNotice from './InlineNotice'; import notes from './InlineNotice.stories.md'; export const withoutTitle = () => (
This is a warning notice. You might want to pay attention to this. This is an error notice. You really want to pay attention to this. This is a success notice. You ought to feel really good about this. This is an info notice. You should get some context from this. This is an generic notice. You will just want to see this.
); export const withTitle = () => (
This is a warning notice. You might want to pay attention to this. This is an error notice. You really want to pay attention to this. This is a success notice. You ought to feel really good about this. This is an info notice. You should get some context from this. This is a generic notice. You will just want to notice this.
); export default { title: 'Components/InlineNotice', component: InlineNotice, parameters: { notes, }, };