Sha256: 682e1b6070e489bd05ea41e5d2da7952d2a2df2b5e0d6b80bcf0e337fb451ded

Contents?: true

Size: 987 Bytes

Versions: 15

Compression:

Stored size: 987 Bytes

Contents

import React from "react"
import Table from "../_table.jsx"

function TableContainer() {
  return (
    <Table container
        size="md"
    >
      <thead>
        <tr>
          <th>{`Column 1`}</th>
          <th>{`Column 2`}</th>
          <th>{`Column 3`}</th>
          <th>{`Column 4`}</th>
          <th>{`Column 5`}</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>{`Value 1`}</td>
          <td>{`Value 2`}</td>
          <td>{`Value 3`}</td>
          <td>{`Value 4`}</td>
          <td>{`Value 5`}</td>
        </tr>
        <tr>
          <td>{`Value 1`}</td>
          <td>{`Value 2`}</td>
          <td>{`Value 3`}</td>
          <td>{`Value 4`}</td>
          <td>{`Value 5`}</td>
        </tr>
        <tr>
          <td>{`Value 1`}</td>
          <td>{`Value 2`}</td>
          <td>{`Value 3`}</td>
          <td>{`Value 4`}</td>
          <td>{`Value 5`}</td>
        </tr>
      </tbody>
    </Table>
  )
}

export default TableContainer;

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
playbook_ui-2.9.1 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.9.0 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.9 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.8 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.7 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.6 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.5 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.4 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.3 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.8.1 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.7.2 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.7.1 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.7.0 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.6.0 app/pb_kits/playbook/pb_table/docs/_table_container.jsx
playbook_ui-2.5.0 app/pb_kits/playbook/pb_table/docs/_table_container.jsx