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/views/root/PortalsWrapper.tsx

19 lines
456 B

import React, { FC } from 'react';
import { useSubscription } from 'use-subscription';
import { portalsSubscription } from '../../lib/portals/portalsSubscription';
import PortalWrapper from './PortalWrapper';
const PortalsWrapper: FC = () => {
const portals = useSubscription(portalsSubscription);
return (
<>
{portals.map(({ key, portal }) => (
<PortalWrapper key={key} portal={portal} />
))}
</>
);
};
export default PortalsWrapper;