🌎 🌍 🌏 initial commit

This commit is contained in:
abdennour 2016-11-25 15:59:50 +03:00
commit 41d2cd8b9c
12 changed files with 181 additions and 0 deletions

15
README.md Normal file
View file

@ -0,0 +1,15 @@
# Overview :
```js
import {CSVLink} from 'react-csv';
const csvData =[
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<CSVLink data={csvData} >Download me</CSVLink>
```