## Simple Excel Export ```javascript import React from "react"; import ReactExport from "react-data-export"; const ExcelFile = ReactExport.ExcelFile; const ExcelSheet = ReactExport.ExcelFile.ExcelSheet; const ExcelColumn = ReactExport.ExcelFile.ExcelColumn; const dataSet1 = [ { name: "Johson", amount: 30000, sex: 'M', is_married: true }, { name: "Monika", amount: 355000, sex: 'F', is_married: false }, { name: "John", amount: 250000, sex: 'M', is_married: false }, { name: "Josef", amount: 450500, sex: 'M', is_married: true } ]; const dataSet2 = [ { name: "Johnson", total: 25, remainig: 16 }, { name: "Josef", total: 25, remainig: 7 } ]; class Download extends React.Component { render() { return ( col.is_married ? "Married" : "Single"}/> ); } } ``` ## Output ![Simple Excel Export](https://i.imgur.com/6fwdJeo.png)