import React from 'react';
import { connect } from 'react-redux';
export const ${1:filename} = (props) => {
return (
<div>first</div>
)
}
const mapStateToProps = (state) => ({})
const mapDispatchToProps = {}
export default connect(mapStateToProps, mapDispatchToProps)(${1:filename})