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

Add propTypes to LoginApp component (#16595)

parent 0574766e
No related branches found
No related tags found
No related merge requests found
/* eslint-disable react/prop-types */
import React, { Component } from "react";
import PropTypes from "prop-types";
import { Link } from "react-router";
import { connect } from "react-redux";
import { t } from "ttag";
......@@ -45,3 +45,8 @@ export default class LoginApp extends Component {
);
}
}
LoginApp.propTypes = {
providers: PropTypes.array,
params: PropTypes.object.isRequired,
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment