module React = {
  type t

  let render = () => Js.log("foo")
}

module Make: () => S = (_: Config, ()) => {}
module rec Make: (Config, ()) => S = (Config: Config, ()): S => {}
