RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/components/message/content/attachments/structure/AttachmentInner.tsx

Summary

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

type AttachmentInnerProps = ComponentPropsWithoutRef<typeof Box>;

const AttachmentInner = (props: AttachmentInnerProps) => <Box {...props} />;

export default AttachmentInner;