You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/InteractiveSearch/InteractiveSearchTable.js

24 lines
453 B

import PropTypes from 'prop-types';
import React from 'react';
import InteractiveSearchConnector from './InteractiveSearchConnector';
function InteractiveSearchTable(props) {
const {
type,
...otherProps
} = props;
return (
<InteractiveSearchConnector
searchPayload={otherProps}
type={type}
/>
);
}
InteractiveSearchTable.propTypes = {
type: PropTypes.string.isRequired
};
export default InteractiveSearchTable;