import {joinClassNames} from '../../libs/helper.ts' import {HTMLAttributes, PropsWithChildren} from 'react' type DescProps = HTMLAttributes & PropsWithChildren export default function Description(props: DescProps) { return

{props.children}

}