mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
22 lines
478 B
JavaScript
22 lines
478 B
JavaScript
import React from 'react';
|
|
import AuthorHistoryContentConnector from 'Author/History/AuthorHistoryContentConnector';
|
|
import AuthorHistoryTableContent from 'Author/History/AuthorHistoryTableContent';
|
|
|
|
function AuthorHistoryTable(props) {
|
|
const {
|
|
...otherProps
|
|
} = props;
|
|
|
|
return (
|
|
<AuthorHistoryContentConnector
|
|
component={AuthorHistoryTableContent}
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
}
|
|
|
|
AuthorHistoryTable.propTypes = {
|
|
};
|
|
|
|
export default AuthorHistoryTable;
|