2025-04-24 13:11:28 +08:00

8 lines
151 B
TypeScript

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