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/VerticalBar/VerticalBarContent.tsx

9 lines
359 B

import React, { ComponentProps, forwardRef, memo } from 'react';
import Page from '../Page';
const VerticalBarContent = forwardRef<HTMLElement, ComponentProps<typeof Page.Content>>(function VerticalBarContent(props, ref) {
return <Page.Content rcx-vertical-bar__content display='flex' {...props} ref={ref} />;
});
export default memo(VerticalBarContent);