import type { Meta, StoryObj } from '@storybook/react' import { Gridstack } from '../Gridstack/index' const meta: Meta = { component: Gridstack, title: 'molecules/Gridstack', args: { } } export default meta type Story = StoryObj export const GridTemplate: Story = { args: {} }