const WithJustAutoRun = React.memo((props: { first: Todo; second: Todo; counter: number; }) => { const rendered = useObservation(() => { return (

Obs: {props.counter.toString() + props.first.completed.toString()}

); }, [props]); return
{rendered}
; })