'react material table export button not view correct

[in my react use export button material table not show complete bar my code i use the source code in material table:

options= {{exportButton:true }} how solvet it? ]1



Solution 1:[1]

You will have to open up the toolbar to view the export button.

toolbar: true,        
exportButton: true,

Solution 2:[2]

My export settings are:

options={{
        exportButton: true,
        exportAllData: true,  // optional
      }}

Don't forget to add:

<link rel="stylesheet" href="https://fonts.googleapis.com/icon family=Material+Icons" />

In the header of your:

public/index.html

source: docs

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 enzo
Solution 2 Luv_Python