mirror of
https://github.com/Readarr/Readarr
synced 2026-01-13 11:03:45 +01:00
23 lines
453 B
JavaScript
23 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;
|