import React from 'react' import { create } from 'dva-core' import { Provider, connect } from 'react-redux' export { connect } export default function(options) { const app = create(options) // HMR workaround if (!global.registered) options.models.forEach(model => app.model(model)) global.registered = true app.start() // eslint-disable-next-line no-underscore-dangle const store = app._store app.start = container => () => {container} app.getStore = () => store return app }