react-rxjs-elements icon indicating copy to clipboard operation
react-rxjs-elements copied to clipboard

React Suspense support

Open kosich opened this issue 3 years ago • 0 comments

Enable Suspense for SSR

Something like

const App = () => {
  // $Suspense is a reactive element
  <$Suspense fallback={ <span>loading...</span> }>
    { stream$ }
  </$Suspense>
}

--

TODO: Consider approach suggested by @joshribakoff in https://github.com/kosich/react-rxjs-elements/issues/4#issuecomment-683872341 with BehaviorSubject

kosich avatar Aug 13 '20 08:08 kosich