overleaf-cep/services/web/frontend/js/features/ui/components/ol/ol-row.tsx
Tim Down 5c4cb50628 Merge pull request #24988 from overleaf/td-bs5-upgrade-and-rename
Apply minor upgrades to Bootstrap 5 and react-bootstrap

GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
2025-05-16 08:05:28 +00:00

7 lines
149 B
TypeScript

import { Row } from 'react-bootstrap'
function OLRow(props: React.ComponentProps<typeof Row>) {
return <Row {...props} />
}
export default OLRow