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

8 lines
151 B
TypeScript

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