mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-08 05:51:47 -07:00
27 lines
442 B
JavaScript
27 lines
442 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import styles from './DescriptionList.css';
|
|
|
|
class DescriptionList extends Component {
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
children
|
|
} = this.props;
|
|
|
|
return (
|
|
<dl className={styles.descriptionList}>
|
|
{children}
|
|
</dl>
|
|
);
|
|
}
|
|
}
|
|
|
|
DescriptionList.propTypes = {
|
|
children: PropTypes.node
|
|
};
|
|
|
|
export default DescriptionList;
|