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

20 lines
417 B
TypeScript

import { CSSProperties, FC } from 'react'
import { ToastContainer as BS5ToastContainer } from 'react-bootstrap-5'
type OLToastContainerProps = {
style?: CSSProperties
className?: string
}
export const OLToastContainer: FC<OLToastContainerProps> = ({
children,
className,
style,
}) => {
return (
<BS5ToastContainer className={className} style={style}>
{children}
</BS5ToastContainer>
)
}