xcv58/Custom-JavaScript-for-Websites-2

View on GitHub
src/js/stores/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import AppStore from './AppStore'
import IncludeStore from './IncludeStore'
import NewPatternStore from './NewPatternStore'

export default class Store {
  AppStore: AppStore

  IncludeStore: IncludeStore

  NewPatternStore: NewPatternStore

  constructor () {
    this.AppStore = new AppStore(this)
    this.IncludeStore = new IncludeStore(this)
    this.NewPatternStore = new NewPatternStore(this)
  }
}