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