mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
New: Readarr 0.1
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user