Skip to content

Commit a679dcb

Browse files
committed
Update README
1 parent abc65a0 commit a679dcb

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ yarn add react-xls --save
3030

3131
### 🎀 useExcelDownloader
3232

33-
#### Button
33+
#### 👨‍💻 Button
3434

3535
```js
3636
import React from 'react';
@@ -72,7 +72,7 @@ function App() {
7272
export default App;
7373
```
7474

75-
#### Link
75+
#### 👨‍💻 Link
7676

7777
```js
7878
import React from 'react';
@@ -114,6 +114,28 @@ function App() {
114114
export default App;
115115
```
116116

117+
#### 📖 useExcelDownloder Returned Object
118+
119+
| Object Properties | Description |
120+
| :--- | :--- |
121+
| ExcelDownloder | React component that render the link/button which is clicked to download the data provided in excel file. |
122+
| Type | Constant object ( `Type.Line` && `Type.Button` ). |
123+
| setData | Method that use to set data. |
124+
| setFilename | Method that use to set filename. |
125+
| setStyle | Method that use to set style. |
126+
| setClassName | Method that use to set className. |
127+
128+
#### 📖 ExcelDownloder props
129+
130+
| Props | Type | Default | Description | Required |
131+
| :--- | :--- | :--- | :--- | :--- |
132+
| children | node | | React component, HTML element or string. ||
133+
| data | object | | Downloaded data. ||
134+
| filename | string | | Filename ( `.xlsx` extension is automatically added ). ||
135+
| type | string | 'link' | If 'button', render button. ||
136+
| style | object | {} | Inline style. ||
137+
| className | string | '' | className ||
138+
117139
## 📜 Changelog
118140

119141
Latest version 0.1.0 (2021-08-15):

0 commit comments

Comments
 (0)