mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
TS => js
This commit is contained in:
parent
23553316a7
commit
313a8b758e
@ -108,17 +108,17 @@ The addon config `config` allows you to add extra preview configuration from wit
|
|||||||
|
|
||||||
For example, the Backgrounds preset contains the following code:
|
For example, the Backgrounds preset contains the following code:
|
||||||
|
|
||||||
```ts
|
```js
|
||||||
// preset.ts
|
// preset.js
|
||||||
export function config(entry: any[] = []) {
|
export function config(entry = []) {
|
||||||
return [...entry, require.resolve('./defaultParameters')];
|
return [...entry, require.resolve('./defaultParameters')];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Which in turn invokes:
|
Which in turn invokes:
|
||||||
|
|
||||||
```ts
|
```js
|
||||||
// defaultParameters.ts
|
// defaultParameters.js
|
||||||
export const parameters = {
|
export const parameters = {
|
||||||
backgrounds: {
|
backgrounds: {
|
||||||
values: [
|
values: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user