Skip to content
Snippets Groups Projects
Unverified Commit 28261880 authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Add propTypes to LogoutApp component (#16596)

parent df02ca99
Branches
Tags
No related merge requests found
/* eslint-disable react/prop-types */
import { Component } from "react";
import PropTypes from "prop-types";
import { connect } from "react-redux";
import { logout } from "../auth";
......@@ -23,3 +23,7 @@ export default class LogoutApp extends Component {
return null;
}
}
LogoutApp.propTypes = {
logout: PropTypes.func.isRequired,
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment