mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-29 21:07:35 +00:00
24 lines
453 B
JavaScript
24 lines
453 B
JavaScript
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;
|