import { Box } from '@rocket.chat/fuselage'; import React, { FC } from 'react'; const Card: FC = ({ children, ...props }) => ( {children} ); export default Card;