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/apps/meteor/client/views/room/Header/RoomInviteHeader.tsx

17 lines
309 B

import RoomHeader from './RoomHeader';
import type { RoomHeaderProps } from './RoomHeader';
const RoomInviteHeader = ({ room }: Pick<RoomHeaderProps, 'room'>) => {
return (
<RoomHeader
room={room}
slots={{
toolbox: {
hidden: true,
},
}}
/>
);
};
export default RoomInviteHeader;