overleaf/services/web/frontend/js/features/ui/components/bootstrap-5/bootstrap-version-switcher.tsx

16 lines
341 B
TypeScript
Raw Normal View History

import { isBootstrap5 } from '@/features/utils/bootstrap-5'
type BootstrapVersionSwitcherProps = {
bs3: React.ReactNode
bs5: React.ReactNode
}
function BootstrapVersionSwitcher({
bs3,
bs5,
}: BootstrapVersionSwitcherProps): React.ReactElement {
return <>{isBootstrap5() ? bs5 : bs3}</>
}
export default BootstrapVersionSwitcher