MCPcopy Index your code
hub / github.com/coston/react-super-responsive-table

github.com/coston/react-super-responsive-table @v6.0.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release v6.0.2 ↗ · + Follow
12 symbols 33 edges 16 files 0 documented · 0% 1 cross-repo links
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

⌗ react-super-responsive-table

GitHub last commit NPM Downloads GitHub Repo stars

react-super-responsive-table converts your table data to a user-friendly list in mobile view.

Demo

Demo Gif md-only

View the live code demo at https://react-super-responsive-table.coston.io.

Installation

npm install react-super-responsive-table --save

Usage

  1. import { Table, Thead, Tbody, Tr, Th, Td } from 'react-super-responsive-table'
  2. Copy or import react-super-responsive-table/dist/SuperResponsiveTableStyle.css into your project. Customize breakpoint in the css as needed.
  3. Write your html table with the imported components.
  4. Resize your browser window width to pivot this super responsive table!
<Table>
  <Thead>
    <Tr>
      <Th>Event</Th>
      <Th>Date</Th>
      <Th>Location</Th>
      <Th>Organizer</Th>
      <Th>Theme</Th>
      <Th>Agent</Th>
    </Tr>
  </Thead>
  <Tbody>
    <Tr>
      <Td>Tablescon</Td>
      <Td>9 April 2019</Td>
      <Td>East Annex</Td>
      <Td>Super Friends</Td>
      <Td>Data Tables</Td>
      <Td>Coston Perkins</Td>
    </Tr>
    <Tr>
      <Td>Capstone Data</Td>
      <Td>19 May 2019</Td>
      <Td>205 Gorgas</Td>
      <Td>Data Underground</Td>
      <Td>Data Scence</Td>
      <Td>Jason Phillips</Td>
    </Tr>
    <Tr>
      <Td>Tuscaloosa D3</Td>
      <Td>29 June 2019</Td>
      <Td>Github</Td>
      <Td>The Contributors Consortium</Td>
      <Td>Data Viz</Td>
      <Td>Coston Perkins</Td>
    </Tr>
  </Tbody>
</Table>

Using Dynamic Headers

Headers are statefully stored on first render of the table, since the library doesn't use props for them and just checks the children of the thead to build its internal list of headers upon construction. To use dynamic headers, use a key prop to ensure the components are all internally updated when you're making this kind of change.

<Table key={i}>
  <Thead>
    <Tr>
      <Th>{headers[0]}</Th>
      <Th>{headers[1]}</Th>
    </Tr>
  </Thead>
  <Tbody>
    <Tr>
      <Td>item 1</Td>
      <Td>item 2</Td>
    </Tr>
  </Tbody>
</Table>

Contributors

Super Responsive Tables are made possible by these great community members:

Contributing

Please help turn the tables on unresponsive data! Submit an issue and/or make a pull request. Check the projects board for tasks to do.

License

Licensed under the MIT license.

Core symbols most depended-on inside this repo

allowed
called by 7
src/utils/allowed.ts
Td
called by 0
src/components/Td.tsx
TrInner
called by 0
src/components/TrInner.tsx
TdInner
called by 0
src/components/TdInner.tsx
Thead
called by 0
src/components/Thead.tsx
Tr
called by 0
src/components/Tr.tsx
TableWithHeaderProvider
called by 0
src/components/Table.tsx
Tbody
called by 0
src/components/Tbody.tsx

Shape

Function 12

Languages

TypeScript100%

Modules by API surface

test/index.test.tsx2 symbols
src/utils/tableContext.tsx1 symbols
src/utils/allowed.ts1 symbols
src/components/TrInner.tsx1 symbols
src/components/Tr.tsx1 symbols
src/components/Thead.tsx1 symbols
src/components/Th.tsx1 symbols
src/components/TdInner.tsx1 symbols
src/components/Td.tsx1 symbols
src/components/Tbody.tsx1 symbols
src/components/Table.tsx1 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

For agents

$ claude mcp add react-super-responsive-table \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact