You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
468 B
JavaScript
24 lines
468 B
JavaScript
import React, {Component} from 'react';
|
|
import { observer } from 'mobx-react';
|
|
import {stores_Context} from '../config'
|
|
|
|
class Home extends Component {
|
|
static contextType = stores_Context;
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
const {orders_store} = this.context;
|
|
|
|
return (
|
|
<div>
|
|
这就是一个主页,什么也没写
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default observer(Home);
|