1234567891011121314151617181920212223 |
- import React from 'react';
- import { connect } from 'react-redux';
- function Example({}) {
- return <div>
- Example
- </div>;
- }
- function stateToProps({}) {
- return {};
- }
- function dispatchToProps(dispatch) {
- return {};
- }
- export default connect(stateToProps, dispatchToProps)(Example);
|