Readarr/frontend/src/BookFile/Editor/BookFileEditorTable.js
2020-05-19 21:50:37 +01:00

16 lines
322 B
JavaScript

import React from 'react';
import BookFileEditorTableContentConnector from './BookFileEditorTableContentConnector';
function BookFileEditorTable(props) {
const {
...otherProps
} = props;
return (
<BookFileEditorTableContentConnector
{...otherProps}
/>
);
}
export default BookFileEditorTable;