glittershark / reactable

Fast, flexible, and simple data tables in React
glittershark.github.io/reactable
MIT License
1.51k stars 222 forks source link

Any example css? #343

Open Dashman99 opened 7 years ago

Dashman99 commented 7 years ago

I was wondering if anyone had any example css they could share for use with Reactable?

Dashman99 commented 7 years ago

Hi @glittershark I see you have an example stylesheet here but I am having trouble using it in my reactable table. I have imported it into my component.js and also tried in my index.js, which is the starting point for my React application. I am using webpack to bundle. BTW I am a complete beginner to React...any help is greatly appreciated!

ssorallen commented 7 years ago

I've been using reactable with Bootstrap tables:

import {Table} from 'reactable';

<div className='table-responsive'>
  <Table className='table table-bordered table-condensed'>
    ...
  </Table>
</div>