16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
|
|
import React, {Component} from 'react';
|
||
|
|
import {observer} from 'mobx-react';
|
||
|
|
import { WeaAuth } from "ecCom";
|
||
|
|
|
||
|
|
@observer
|
||
|
|
export default class ViewRangeForm extends Component{
|
||
|
|
render(){
|
||
|
|
const {store} = this.props;
|
||
|
|
const {viewRangeAuthProps} = store;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<WeaAuth ecId={`${this && this.props && this.props.ecId || ''}_WeaAuth@xuisnk`} {...viewRangeAuthProps}>
|
||
|
|
</WeaAuth>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|