import { Meta, StoryObj } from '@storybook/react'; import styled from 'styled-components'; import { PaneList } from '..'; const meta: Meta = { title: 'Opize Component/PaneList', component: PaneList, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: {}, render: (args) => ( Item Item Item ), }; const StickyDiv = styled.div` position: relative; max-width: 300px; margin: 0 auto; padding: 16px; min-height: 200dvh; `; export const Sticky: Story = { args: { isSticky: true, }, render: (args) => ( Item Item Item ), };