phodal/growth

View on GitHub
src/utils/MoregexWebViewServices.js

Summary

Maintainability
A
1 hr
Test Coverage
export default class MoregexWebViewServices {
  webView: null;

  static getWebView(): null {
    return this.webView;
  }

  static setWebView(value: null) {
    this.webView = value;
  }
}