updating readme

This commit is contained in:
Nic Luciano 2018-01-28 14:25:25 -05:00
parent 1f3a0117b9
commit 59d128697c

View File

@ -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.