8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { Col } from 'react-bootstrap-5'
|
|
|
|
function OLCol(props: React.ComponentProps<typeof Col>) {
|
|
return <Col {...props} />
|
|
}
|
|
|
|
export default OLCol
|