mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
8bc374c916
[web] BS5 review panel new GitOrigin-RevId: c65d17d0053858bd74984ba746a620b89d900606
17 lines
398 B
TypeScript
17 lines
398 B
TypeScript
import { Meta } from '@storybook/react'
|
|
|
|
export const bootstrapVersionArg = 'bootstrapVersion'
|
|
|
|
export const bsVersionDecorator: Meta = {
|
|
argTypes: {
|
|
[bootstrapVersionArg]: {
|
|
name: 'Bootstrap Version',
|
|
description: 'Bootstrap version for components',
|
|
control: { type: 'inline-radio' },
|
|
options: ['3', '5'],
|
|
},
|
|
},
|
|
args: {
|
|
[bootstrapVersionArg]: '3',
|
|
},
|
|
}
|