app.js 88 B

123456
  1. let app = null
  2. export const getApp = () => app
  3. export const setApp = a => {
  4. app = a
  5. }