Search code examples
reactjsbuttonreact-bootstrap

react bootstrap button not showing


`I have used the react bootstrap buttons, but the buttons are not displaying. Other components of react bootstrap are displaying but buttons are not displaying.

I have imported buttons as import Button from 'react-bootstrap/Button';

when I use button as variant="primary">Submit

There is a blank page when I have used only buttons


Solution

  • The issue is in the CSS applied in the App.js, mistakenly I have applied the display property to none, so the button is not visible. Removing the CSS made the button visible.