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/admin/integrations/new/NewBot.js

9 lines
334 B

import React from 'react';
import { Box } from '@rocket.chat/fuselage';
import { useTranslation } from '../../../contexts/TranslationContext';
export default function NewBot() {
const t = useTranslation();
return <Box pb='x20' fontScale='s1' key='bots' dangerouslySetInnerHTML={{ __html: t('additional_integrations_Bots') }}/>;
}