File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/scala/japgolly/scalajs/react/component Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ object JsFn extends JsBaseComponentTemplate[RAW.ReactFunctionalComponent] {
2525
2626 // ===================================================================================================================
2727
28- sealed trait UnmountedSimple [P1 , M1 ] extends Generic .UnmountedSimple [P1 , M1 ] {
28+ sealed trait UnmountedSimple [P , M ] extends Generic .UnmountedSimple [P , M ] {
2929 override final type Raw = RAW .ReactComponentElement
3030 override final def displayName = staticDisplayName
3131
32- override def mapUnmountedProps [P2 ](f : P1 => P2 ): UnmountedSimple [P2 , M1 ]
33- override def mapMounted [M2 ](f : M1 => M2 ): UnmountedSimple [P1 , M2 ]
32+ override def mapUnmountedProps [P2 ](f : P => P2 ): UnmountedSimple [P2 , M ]
33+ override def mapMounted [M2 ](f : M => M2 ): UnmountedSimple [P , M2 ]
3434
3535 override final def renderIntoDOM (container : RAW .ReactDOM .Container , callback : Callback = Callback .empty): Mounted = {
3636 val result = RAW .ReactDOM .render(raw, container, callback.toJsFn)
You can’t perform that action at this time.
0 commit comments