mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

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