import { Meta, StoryFn } from '@storybook/react' import React from 'react' import { Button, Icon, Text } from '../../index.js' import { InfoBox } from './info-box.jsx' export const Default: StoryFn = () => ( Currently there are no cars in the system To create first click ) const meta: Meta = { title: 'DesignSystem/Molecules/InfoBox', component: InfoBox, } export default meta