mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2026-06-28 21:20:04 +00:00
fix wrong story example code
This commit is contained in:
@@ -40,7 +40,13 @@ const columns = [{
|
||||
keyField="id"
|
||||
data={ products }
|
||||
columns={ columns }
|
||||
exportCSV
|
||||
exportCSV={ {
|
||||
fileName: 'custom.csv',
|
||||
separator: '|',
|
||||
ignoreHeader: true,
|
||||
noAutoBOM: false,
|
||||
blobType: 'text/csv;charset=ansi'
|
||||
} }
|
||||
>
|
||||
{
|
||||
props => (
|
||||
@@ -64,7 +70,8 @@ export default () => (
|
||||
fileName: 'custom.csv',
|
||||
separator: '|',
|
||||
ignoreHeader: true,
|
||||
noAutoBOM: false
|
||||
noAutoBOM: false,
|
||||
blobType: 'text/csv;charset=ansi'
|
||||
} }
|
||||
>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user