user884424
user884424

Reputation: 583

react-bootstrap-table missing styles

I am new bee trying out react, react-bootstrap-table, I followed the example code, but unable to render table with style. in my table class I am importing the bootstrap css

import 'react-bootstrap-table/dist/react-bootstrap-table-all.min.css';

inspect element shows head tag renders css, but still my table is not formatted, table image, Created this project in github github project, please advice what is missing. To run the porject git clone, npm install npm start.

Upvotes: 2

Views: 4569

Answers (1)

Manjula Devi
Manjula Devi

Reputation: 149

In index.html file. Add this line for your stylesheet. Works.

  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">

Upvotes: 3

Related Questions