import { motion } from 'framer-motion'; import { FunctionComponent, PropsWithChildren } from 'react'; import { MotionScrollArea } from '../../../../common/components/molecules/MotionScrollArea/MotionScrollArea'; /** * @description To be used by {@link Case}. Serves as a container for ${@link Case.Info} and {@link Case.Documents}. * * @param props * @param props.children - Expects {@link Case.Info} and {@link Case.Documents} as children. * * @see {@link Case.Info} * @see {@link Case.Documents} * * @constructor */ export const Content: FunctionComponent = ({ children }) => { return ( {children} ); };