Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 760 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 760 Bytes

react-pixi-layout

React Fiber renderer for pixi.js with flexbox layout

NPM JavaScript Style Guide

Example

(https://codesandbox.io/s/r0lkjp8k1p)

Install

npm install --save react-pixi-layout

Usage

import React, { Component } from 'react'

import { Stage, Text } from 'react-pixi-layout'

class Example extends Component {
  render () {
    return (
      <Stage width={ 640 } height={ 480 }>
      	<Text text="Hello world" />
      </Stage>
    );
  }
}

License

MIT © lunarraid