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