import { connect } from 'react-redux'
import React, { Component } from 'react'
type Props = {}
type State = {}
export class ${1:filename} extends Component<Props, State> {
state = {}
render() {
return (
<div>first</div>
)
}
}
const mapStateToProps = (state) => ({})
const mapDispatchToProps = {}
export default connect(mapStateToProps, mapDispatchToProps)(${1:filename})