import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { recordGoogleEvent } from '../../state/analytics/actions'; import Security2faKeyItem from './item'; import './style.scss'; function Security2faKeyList( props ) { return (
); } Security2faKeyList.propTypes = { securityKeys: PropTypes.array.isRequired, onDelete: PropTypes.func.isRequired, }; export default connect( null, { recordGoogleEvent, } )( localize( Security2faKeyList ) );