mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 07:45:52 +01:00
16 lines
322 B
JavaScript
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;
|