mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

Apply minor upgrades to Bootstrap 5 and react-bootstrap GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import { Row } from 'react-bootstrap'
|
|
|
|
function OLRow(props: React.ComponentProps<typeof Row>) {
|
|
return <Row {...props} />
|
|
}
|
|
|
|
export default OLRow
|