import { Card } from 'react-bootstrap-5' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' import { FC } from 'react' import classNames from 'classnames' const OLCard: FC<{ className?: string }> = ({ children, className }) => { return ( {children}} bs5={ {children} } /> ) } export default OLCard