mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
25 lines
542 B
JavaScript
25 lines
542 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import MovieFileEditorTableContentConnector from './MovieFileEditorTableContentConnector';
|
|
import styles from './MovieFileEditorTable.css';
|
|
|
|
function MovieFileEditorTable(props) {
|
|
const {
|
|
movieId
|
|
} = props;
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<MovieFileEditorTableContentConnector
|
|
movieId={movieId}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
MovieFileEditorTable.propTypes = {
|
|
movieId: PropTypes.number.isRequired
|
|
};
|
|
|
|
export default MovieFileEditorTable;
|