import UiConfig from './uiConfig'
import UiMgr from './uiMgr'

export default class ZfbMpUiMgr extends UiMgr {
  constructor(config: UiConfig) {
    super(config)
  }

  protected init() {}

  pushPage() {}

  popPage() {}

  gotoPage() {}

  redirectPage() {}

  goHomePage() {}
}
