mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
09ca49a860
[web] BS5 project tools GitOrigin-RevId: 3181c62985b6db4051292b484f53178a0736fa75
16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
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
|