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
|