Files
Readarr/frontend/src/Author/History/AuthorHistoryTable.js
T
2020-05-19 21:50:37 +01:00

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;