Rxact Xstream is a Rxact plugin for adding Xstream supporting to Rxact.
yarn add rxact rxact-xstream
import { setup, StateStream } from 'rxact'
import { Observable } from 'rxact-xstream'
setup({ Observable: Observable })
// it works now.
const stream = new StateStream('stream', { name: 'rxact' })
// state$ is a xstream instance now.
stream.state$
...