Files
Chromacase/front/components/Loading.stories.tsx
2023-09-30 11:05:08 +02:00

11 lines
311 B
TypeScript

// @ts-expect-error Who does tests anyway?
import { ComponentStory, ComponentMeta } from '@storybook/react';
import Loading from './Loading';
export default {
title: 'Loading',
component: Loading,
} as ComponentMeta<typeof Loading>;
export const Default: ComponentStory<typeof Loading> = () => <Loading />;