import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Address } from '../Address/Address' import { Box } from './Box' import { Blockie } from '../Blockie/Blockie' const address = '0x0F5D2fB29fb7d3CFeE444a200298f468908cC942' const meta: Meta = { title: 'Box', component: Box } export default meta type Story = StoryObj export const WithoutHeader: Story = { render: () => (
) } export const WithHeader: Story = { render: () => (
) } export const WithoutBorder: Story = { render: () => (
) } export const Collapsible: Story = { render: () => (
) } export const Collapsed: Story = { render: () => (
) }