14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doSignOut } from 'redux/actions/app';
|
|
import UserSignOutButton from './view';
|
|
|
|
const select = state => ({});
|
|
|
|
const perform = dispatch => ({
|
|
signOut: () => dispatch(doSignOut()),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(UserSignOutButton);
|