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/Page/PageContent.tsx

8 lines
374 B

import { Box } from '@rocket.chat/fuselage';
import React, { ComponentProps, forwardRef } from 'react';
const PageContent = forwardRef<HTMLElement, ComponentProps<typeof Box>>(function PageContent(props, ref) {
return <Box ref={ref} paddingInline='x24' display='flex' flexDirection='column' overflowY='hidden' height='full' {...props} />;
});
export default PageContent;