import { FC, PropsWithChildren } from 'react' import Grid from '@mui/material/Unstable_Grid2' import { LmGalleryRowProps } from './LmGalleryRow' import { Parallax } from 'react-scroll-parallax' const LmGalleryRowContainer: FC> = ({ children, options, content }) => { return ( {children} ) } export default LmGalleryRowContainer