Fixed: Minor UI improvements to author and book details

This commit is contained in:
Bogdan
2023-12-24 09:05:46 +02:00
parent 34eb312426
commit dc83e0127e
16 changed files with 122 additions and 43 deletions
@@ -1,5 +1,6 @@
import React from 'react';
import BookFileEditorTableContentConnector from './BookFileEditorTableContentConnector';
import styles from './BookFileEditorTable.css';
function BookFileEditorTable(props) {
const {
@@ -7,9 +8,11 @@ function BookFileEditorTable(props) {
} = props;
return (
<BookFileEditorTableContentConnector
{...otherProps}
/>
<div className={styles.container}>
<BookFileEditorTableContentConnector
{...otherProps}
/>
</div>
);
}