import { Meta, StoryFn } from '@storybook/react'
import React from 'react'
import StoryWrapper from '../../utils/story-wrapper.jsx'
import { Box, Button, CardTitle, Icon, Text } from '../index.js'
import { Section } from './index.js'
export const Default: StoryFn = () => (
Some text within a sectionSection can be nested
)
const meta: Meta = {
title: 'DesignSystem/Atoms/Section',
component: Section,
argTypes: {
onClick: { action: 'clicked' },
},
}
export default meta