1.3.4 • Published 9 years ago

planett-layout v1.3.4

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

Planett Layout

Install

  npm install planett-layout --save

Example

  'use strict';

  import React from 'react';
  import ReactDOM from 'react-dom';
  import {Grid, Cell} from 'planett-layout';

  class Example extends React.Component {
    render() {
      return (
        <div>
          <Grid>
            {[1, 1, 1, 1, 1, 1,
              1, 1, 1, 1, 1, 1].map((d, i) => {
              return (
                <Cell key={i}
                      col={[d, d, d]}
                >{d}</Cell>
              );
            })}
          </Grid>

          <Grid>
            {[4, 4, 4].map((d, i) => {
              return (
                <Cell key={i}
                      col={[d, d, d]}
                >{d}</Cell>
              );
            })}
          </Grid>

          <Grid>
            <Cell col={[6, 4, 2]} />
            <Cell col={[6, 4, 2]} />
          </Grid>
        </div>
      );  
    }
  };

  (() => {
    ReactDOM.render(
      <Example />,
      document.getElementById('root')
    );
  })();

History

1.3.4

9 years ago

1.3.3

9 years ago

1.3.2

9 years ago

1.3.1

9 years ago

1.3.0

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.12

10 years ago

1.0.11

10 years ago

1.0.10

10 years ago

1.0.9

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

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