import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' import { CSSProperties, FC } from 'react' import { ToastContainer as BS5ToastContainer } from 'react-bootstrap-5' import { ToastContainer as BS3ToastContainer } from '../bootstrap-3/toast-container' type OLToastContainerProps = { style?: CSSProperties className?: string } export const OLToastContainer: FC = ({ children, className, style, }) => { return ( {children} } bs3={ {children} } /> ) }