import * as React from 'react'; import $api from 'services'; import $store from 'store'; import {$wxshare} from 'lib'; export abstract class BaseReact extends React.Component { protected readonly $api: any = $api; protected readonly $store: any = $store; protected readonly $share: any = $wxshare; public props: any; } export abstract class BasePureReact extends React.PureComponent { protected readonly $api: any = $api; protected readonly $store: any = $store; protected readonly $share: any = $wxshare; public props: any; }