Remove react-bootstrap 0.33.1 GitOrigin-RevId: c320a6b18c576afdc0fd49559915d3d2f3a7a1ef
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { Row } from 'react-bootstrap-5'
|
|
|
|
function OLRow(props: React.ComponentProps<typeof Row>) {
|
|
return <Row {...props} />
|
|
}
|
|
|
|
export default OLRow
|