import { ComponentMeta, ComponentStory } from '@storybook/react'; import { ErrorBox, SuccessBox } from './IntentBox'; export default { component: ErrorBox, } as ComponentMeta; export const Error: ComponentStory = () => ( I'm an error ); export const Success: ComponentStory = () => ( I'm a success );