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/sidebar/RoomList/RoomListRowWrapper.tsx

11 lines
451 B

import { SidebarV2ListItem } from '@rocket.chat/fuselage';
import type { ForwardedRef, HTMLAttributes } from 'react';
import { forwardRef } from 'react';
type RoomListRoomWrapperProps = HTMLAttributes<HTMLDivElement>;
const RoomListRoomWrapper = forwardRef(function RoomListRoomWrapper(props: RoomListRoomWrapperProps, ref: ForwardedRef<HTMLDivElement>) {
return <SidebarV2ListItem ref={ref} {...props} />;
});
export default RoomListRoomWrapper;