mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
New: Project Aphrodite
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import PropTypes from 'prop-types';
|
||||
import React, { Component } from 'react';
|
||||
|
||||
class TableBody extends Component {
|
||||
|
||||
//
|
||||
// Render
|
||||
|
||||
render() {
|
||||
const {
|
||||
children
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
<tbody>{children}</tbody>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
TableBody.propTypes = {
|
||||
children: PropTypes.node
|
||||
};
|
||||
|
||||
export default TableBody;
|
||||
Reference in New Issue
Block a user