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/InformationEntry.js

7 lines
263 B

import React from 'react';
export const InformationEntry = ({ 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>;