Apply minor upgrades to Bootstrap 5 and react-bootstrap GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import { Overlay, OverlayProps } from 'react-bootstrap'
|
|
|
|
function OLOverlay(props: OverlayProps) {
|
|
return <Overlay {...props} />
|
|
}
|
|
|
|
export default OLOverlay
|