1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/fanghailiang2019-broadcast_tools

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
index.js 1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
fanghailiang Отправлено 17.07.2019 07:10 85a06fb
/** @format */
import { AppRegistry } from 'react-native';
import { appname } from './application/config/common.json';
import React, {
Component,
} from 'react';
import { Provider } from 'react-redux';
import {AppWithNavigationState, middleware} from './application/routes';
import configureStore from './application/routes/configureStore';
class App extends Component {
constructor(props) {
super(props);
global.uid = this.props.account;
global.token = this.props.token;
global.model = this.props.model;
global.rversion = this.props.rversion;
global.vendor = this.props.vendor;
global.mac = this.props.mac;
global.ip = this.props.ip;
global.imei = this.props.imei;
global.oversion = this.props.oversion;
global.channel = this.props.channel;
this.state = {
store: configureStore({}, middleware)
}
}
render() {
return (
<Provider store={this.state.store}>
<AppWithNavigationState />
</Provider>
)
}
}
AppRegistry.registerComponent(appname, () => App);

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/fanghailiang2019-broadcast_tools.git
git@api.gitlife.ru:oschina-mirror/fanghailiang2019-broadcast_tools.git
oschina-mirror
fanghailiang2019-broadcast_tools
fanghailiang2019-broadcast_tools
master