object ReactRedux

Facade for react-redux

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReactRedux
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class RichVirtualDOMElements extends AnyRef

    io.github.shogowada.scalajs.reactjs.VirtualDOM extension for react-redux components

Value Members

  1. def connect[ReduxState, OwnProps, Props, State](selector: (Dispatch, ReduxState, OwnProps) ⇒ Props): ContainerComponentFactory[OwnProps, Props]
  2. def connect[ReduxState, Props, State](selector: (Dispatch, ReduxState) ⇒ Props): ContainerComponentFactory[Unit, Props]
  3. def connect[Props](selector: (Dispatch) ⇒ Props): ContainerComponentFactory[Unit, Props]
  4. def connectAdvanced[ReduxState, OwnProps, Props](selectorFactory: (Dispatch) ⇒ (ReduxState, OwnProps) ⇒ Props): ContainerComponentFactory[OwnProps, Props]