From b1b867df21e2608adf9b649fb4747357d01e714f Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Fri, 15 Sep 2023 16:49:26 +0300 Subject: [PATCH] Create ExecutionUptime.stories.tsx --- .../ExecutionUptime.stories.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/pages/Dashboard/ExecutionUptime/ExecutionUptime.stories.tsx 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: {}, +}