Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.07 KB

README.md

File metadata and controls

27 lines (22 loc) · 1.07 KB

Introduction

React components and apis which work for Web, Android and iOS!
simple API and usage in any react project

Usage

  • Install
      npm install --save react-platformula
      # or yarn
      yarn add react-platformula
  • import and use!
    import Block, { getCustom as getCustomBlock } from 'react-platformula/block';
    
    // regular block, which is just like react-native's view
    <Block /> 
    
    // Red block, not exposing or needing extra dependencies!
    const RedBlock = getCustomBlock({
      backgroundColor: 'red',
    });
    
    <RedBlock />