Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Last active October 14, 2020 19:54
Embed
What would you like to do?
PingPongReactImplFactory
import { MessageBusClientApi } from "@kogito-tooling/envelope-bus/dist/api";
// ...
export class PingPongReactImplFactory implements PingPongFactory {
public create(initArgs: PingPongInitArgs, channelApi: MessageBusClientApi<PingPongChannelApi>) {
const ref = React.createRef<PingPongApi>();
const pingPongView: PingPong = {
reactComponent: () => <PingPongReactImpl initArgs={initArgs} channelApi={channelApi} ref={ref} />,
};
return pingPongView;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment