Create ExecutionUptime.stories.tsx

This commit is contained in:
Hristo Nedelkov 2023-09-15 16:49:26 +03:00
parent 5858cbaf39
commit b1b867df21
1 changed files with 19 additions and 0 deletions

View File

@ -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<typeof ExecutionUptime>
export default meta
type Story = StoryObj<typeof meta>
export const Page: Story = {
args: {},
}