You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Artist/History/ArtistHistoryTable.js

22 lines
478 B

import React from 'react';
import ArtistHistoryContentConnector from 'Artist/History/ArtistHistoryContentConnector';
import ArtistHistoryTableContent from 'Artist/History/ArtistHistoryTableContent';
function ArtistHistoryTable(props) {
const {
...otherProps
} = props;
return (
<ArtistHistoryContentConnector
component={ArtistHistoryTableContent}
{...otherProps}
/>
);
}
ArtistHistoryTable.propTypes = {
};
export default ArtistHistoryTable;