mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
17 lines
587 B
TypeScript
17 lines
587 B
TypeScript
import { connect } from 'react-redux';
|
|
import { Dispatch } from 'redux';
|
|
import { RootState } from '../../../reducers';
|
|
import AlreadyAuthenticated, { DispatchProps } from '../../../components/AlreadyAuthenticated/AlreadyAuthenticated';
|
|
import LogoutBehavior from '../../../behaviors/LogoutBehavior';
|
|
|
|
const mapStateToProps = (state: RootState) => {
|
|
return {};
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch: Dispatch): DispatchProps => {
|
|
return {
|
|
onLogoutClicked: () => LogoutBehavior(dispatch),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AlreadyAuthenticated); |