RocketChat/Rocket.Chat

View on GitHub
packages/ui-video-conf/src/VideoConfPopup/VideoConfPopupHeader.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box } from '@rocket.chat/fuselage';
import type { ReactNode, ReactElement } from 'react';

const VideoConfPopupHeader = ({ children }: { children: ReactNode }): ReactElement => (
    <Box display='flex' justifyContent='space-between'>
        {children}
    </Box>
);

export default VideoConfPopupHeader;