1.1.5 • Published 8 years ago

planett-table v1.1.5

Weekly downloads
2
License
MIT
Repository
github
Last release
8 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

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago