import { Row } from 'react-bootstrap-5' import { Row as BS3Row } from 'react-bootstrap' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' type OLRowProps = React.ComponentProps function OLRow(props: OLRowProps) { return ( {props.children}} bs5={} /> ) } export default OLRow