-
Notifications
You must be signed in to change notification settings - Fork 207
Open
Description
Accessing nested objects is not possible.
For example if you hava an array like this and and try to access the user.name it is not possible.
const dataSet = [
{
user: {name: 'Mehmet', surname: 'Yılmaz'},
period: 'Eylül - Ekim'
},
{
user: {name: 'Semih', surname: 'Yavuz'},
period: 'Haziran - Temmuz'
}
]
class Download extends React.Component {
render() {
return (
<ExcelFile>
<ExcelSheet data={dataSet} name="Employees">
<ExcelColumn label="Name" value="user"/>
<ExcelColumn label="Period" value="period"/>
</ExcelSheet>
</ExcelFile>
);
}
}
Metadata
Metadata
Assignees
Labels
No labels