openreplay/frontend/app/components/shared/DevTools/BottomBlock/Content.tsx
2023-04-07 10:35:42 +02:00

17 lines
363 B
TypeScript

import React from 'react';
import cn from 'classnames';
import stl from './content.module.css';
const Content = ({
children,
className,
...props
}: { children?: React.ReactNode; className?: string }) => (
<div className={ cn(className, stl.content) } { ...props } >
{ children }
</div>
);
Content.displayName = 'Content';
export default Content;