import React, {Component} from 'react'; import {Row, Col, List, Avatar} from 'antd'; import {stores_Context} from '../config' import {observer} from 'mobx-react'; import { toJS } from "mobx"; class Wechat_session extends Component { static contextType = stores_Context; constructor(props) { super(props); this.stores = this.props.stores; } render() { const {wechatStore} = this.stores; const userList = wechatStore.userList; return (