Skip to content

Try it Online

You can try Pipel-React online without installation:

Online Playgrounds

CodeSandbox

Open in CodeSandbox

StackBlitz

Open in StackBlitz

Quick Example

Try this simple counter example:

tsx
import { usePipel } from 'pipel-react'

function App() {
  const [count, count$] = usePipel(0)

  return (
    <div>
      <h1>Count: {count}</h1>
      <button onClick={() => count$.next(count + 1)}>Increment</button>
    </div>
  )
}

More Examples

Check out our GitHub repository for more examples.

Released under the MIT License.