1.1.5 • Published 10 years ago

planett-table v1.1.5

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Planett Table

Install

  npm install planett-table --save

Example

  import React from 'react';
  import ReactDOM from 'react-dom';
  import Table from 'planett-table';

  (() => {
    ReactDOM.render(
      <Table>
        <thead>
          <tr>
            <th>th 1</th>
            <th>th 2</th>
          </tr>
        </thead>

        <tbody>
          <tr>
            <td>line 1 td 1</td>
            <td>line 1 td 2</td>
          </tr>
          <tr>
            <td>line 2 td 1</td>
            <td>line 2 td 2</td>
          </tr>
        </tbody>
      </Table>,
      document.getElementById('root')
    );
  })();
1.1.5

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago