iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/Spa/React/views/other.txt
2021-12-14 14:10:44 +08:00

17 lines
399 B
Plaintext

import { ImportModal } from 'components/dataView';
import * as React from 'react';
import Store from '../store';
/**
* 其他弹框类组件
*/
export default class extends React.Component<any, any>{
shouldComponentUpdate() {
return false
}
render() {
return <React.Fragment key="page-other">
<ImportModal Store={Store} />
</React.Fragment>
}
}