mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
20 lines
426 B
JavaScript
20 lines
426 B
JavaScript
import React from 'react';
|
|
import BookFileEditorTableContentConnector from './BookFileEditorTableContentConnector';
|
|
import styles from './BookFileEditorTable.css';
|
|
|
|
function BookFileEditorTable(props) {
|
|
const {
|
|
...otherProps
|
|
} = props;
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<BookFileEditorTableContentConnector
|
|
{...otherProps}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default BookFileEditorTable;
|