feat: create story for nodes logo

This commit is contained in:
RadoslavDimchev 2023-08-15 10:59:23 +03:00
parent 82ccc8f802
commit 2e5c17dcf5
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import type { Meta, StoryObj } from '@storybook/react'
import NodesLogo from './NodesLogo'
const meta = {
title: 'General/NodesLogo',
component: NodesLogo,
tags: ['autodocs'],
} satisfies Meta<typeof NodesLogo>
export default meta
type Story = StoryObj<typeof meta>
export const ExampleNodesLogo: Story = {}