import React from 'react'; import { connect } from 'dva'; import CommonCharComponent from '../../components/CommonChar/CommonChar'; function CommonChar({ dispatch, app, content }) { const commonChar = { app, content, dispatch, }; return ( ); } export default connect(({ app, content }) => ({ app, content }))(CommonChar);