Skip to content

Commit

Permalink
Attempt to fix SonarCloud issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-qg committed May 1, 2024
1 parent 65f8fb3 commit 0269ac6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions webapp/src/components/spinner/Spinner.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import './Spinner.css';
import PropTypes from 'prop-types';

class Spinner extends React.Component {
state = {
Expand Down Expand Up @@ -44,4 +45,10 @@ class Spinner extends React.Component {
}
}

Spinner.PropTypes = {
id: PropTypes.string,
min: PropTypes.number,
max: PropTypes.number
}

export default Spinner;

0 comments on commit 0269ac6

Please sign in to comment.