Intro to RecksJS
import Recks from 'recks';
import { timer } from 'rxjs';
function App() {
const ticks$ = timer(0, 1000);
return <div>
<h1>{ ticks$ }</h1>
<p>seconds passed</p>
</div>
}🔎 Overview
📖 Examples
1. Hello world
2. Timer
3. Greeting
4. Counter
📚 Docs
Last updated
Was this helpful?