mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
18 lines
337 B
JavaScript
18 lines
337 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import styles from './VirtualTableHeader.css';
|
|
|
|
function VirtualTableHeader({ children }) {
|
|
return (
|
|
<div className={styles.header}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
VirtualTableHeader.propTypes = {
|
|
children: PropTypes.node
|
|
};
|
|
|
|
export default VirtualTableHeader;
|