import React from 'react' import { Box, Label, BoxProps } from '..' export type StoryWrapperProps = BoxProps & { label: string; children?: React.ReactNode; } const StoryWrapper: React.FC = (props) => { const { label, children } = props return ( {children} ) } export default StoryWrapper