phodal/growth

View on GitHub
src/utils/SectionPageHelper.js

Summary

Maintainability
A
1 hr
Test Coverage
export default class SectionPageHelper {
  section: null;

  static getSection(): null {
    return this.section;
  }

  static setSection(value: null) {
    this.section = value;
  }
}