import React from 'react'; import { Meta, Story } from '@storybook/react'; import { Banner, BannerProps } from './Banner'; import { Button } from '../Button'; import { Column, Main } from '../../layouts'; export default { title: 'Headers/Banner', component: Banner, argTypes: {}, parameters: { controls: { expanded: true }, }, } as Meta; const DefaultTemplate: Story = args => ; const WithButtonsTemplate: Story = args => (