aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/no-results.stories.tsx
blob: cfcee838184eeb9f822be368c12342245a13810c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { ComponentMeta, ComponentStory } from '@storybook/react';
import { NoResults as NoResultsComponent } from './no-results';

export default {
  title: 'Organisms/Layout',
  component: NoResultsComponent,
  argTypes: {},
} as ComponentMeta<typeof NoResultsComponent>;

const Template: ComponentStory<typeof NoResultsComponent> = (args) => (
  <NoResultsComponent {...args} />
);

export const NoResults = Template.bind({});
NoResults.args = {};