The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/admin/info/DescriptionList.js

16 lines
438 B

import React from 'react';
export const DescriptionList = ({ children }) =>
<table className='statistics-table secondary-background-color'>
<tbody>
{children}
</tbody>
</table>;
const Entry = ({ children, label }) =>
<tr className='admin-table-row'>
<th className='content-background-color border-component-color'>{label}</th>
<td className='border-component-color'>{children}</td>
</tr>;
DescriptionList.Entry = Entry;