0.0.4 • Published 7 years ago

react-trae v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

trae as React component

when you have a hammer, everything is a nail

Someone

Install

yarn add react-trae
# or
npm install --save react-trae

Use

import Trae from 'react-trae'

const Artile = () => 
  <Trae url="https://jsonplaceholder.typicode.com/posts/1">
    {
      ({loading, data}) => loading
        ? <span>loading...</span> 
        : <div>
            <h1>{data.title}</h1>
            <p>{data.body}</p>
          </div>
    }
  </Trae>

export default Article