Skip to content

๐Ÿƒ A bundle of Components to use feathers-rematch easily

License

Notifications You must be signed in to change notification settings

russiann/feathers-rematch-react-bindings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

2 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

feathers-rematch-react-bindings

Instalation

yarn add feathers-rematch-react-bindings
or
npm install feathers-rematch-react-bindings --save

Usage

<Snapshot
      name="products"
      publication="expensives"
      find={siftQuery} // https://www.npmjs.com/package/sift
      renderEach={(data, idx) => (
        <div key={idx}>
          <p>renderEach:</p>
          <pre>
            {JSON.stringify(data, null, 2)}
          </pre>
        </div>
      )}
    />

    <Service
      name="products"
      find={{ query: {price: 2000} }}
      renderEach={(data, idx) => (
        <pre key={idx}>
          {JSON.stringify(data, null, 2)}
        </pre>
      )}
    />

About

๐Ÿƒ A bundle of Components to use feathers-rematch easily

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published