|
|
@ -2,6 +2,7 @@ import './BlacklistForm.scss'; |
|
|
|
import AddButton from '../ui/AddButton'; |
|
|
|
import AddButton from '../ui/AddButton'; |
|
|
|
import DeleteButton from '../ui/DeleteButton'; |
|
|
|
import DeleteButton from '../ui/DeleteButton'; |
|
|
|
import React from 'react'; |
|
|
|
import React from 'react'; |
|
|
|
|
|
|
|
import PropTypes from 'prop-types'; |
|
|
|
|
|
|
|
|
|
|
|
class BlacklistForm extends React.Component { |
|
|
|
class BlacklistForm extends React.Component { |
|
|
|
|
|
|
|
|
|
|
@ -49,4 +50,9 @@ class BlacklistForm extends React.Component { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BlacklistForm.propTypes = { |
|
|
|
|
|
|
|
value: PropTypes.arrayOf(PropTypes.string), |
|
|
|
|
|
|
|
onChange: PropTypes.func, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
export default BlacklistForm; |
|
|
|
export default BlacklistForm; |
|
|
|