diff --git a/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.stories.tsx b/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.stories.tsx new file mode 100644 index 00000000..345ec9a1 --- /dev/null +++ b/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.stories.tsx @@ -0,0 +1,19 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import ExecutionUptime from './ExecutionUptime' + +const meta = { + title: 'Dashboard/ExecutionUptime', + component: ExecutionUptime, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Page: Story = { + args: {}, +}