mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
updating readme
This commit is contained in:
parent
1f3a0117b9
commit
59d128697c
@ -247,6 +247,21 @@ const value = select(label, options, defaultValue);
|
||||
|
||||
> You can also provide options as an array like this: `['red', 'blue', 'yellow']`
|
||||
|
||||
### files
|
||||
|
||||
Allows you to get a value from a file input from the user.
|
||||
|
||||
```js
|
||||
import { files } from '@storybook/addon-knobs/react';
|
||||
|
||||
const label = 'Images';
|
||||
const defaultValue = [];
|
||||
|
||||
const value = files(label, defaultValue);
|
||||
```
|
||||
|
||||
> Multiple files can be selected, and will be returned as an array of [Data URLs](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs)
|
||||
|
||||
### date
|
||||
|
||||
Allow you to get date (and time) from the user.
|
||||
|
Loading…
x
Reference in New Issue
Block a user