import React from 'react'; import { MediaListRow } from './MediaListRow'; import './MediaListWrapper.scss'; interface MediaListWrapperProps { title?: string; viewAllLink?: string; viewAllText?: string; className?: string; style?: { [key: string]: any }; children?: any; } export const MediaListWrapper: React.FC = ({ title, viewAllLink, viewAllText, className, style, children, }) => (
{children || null}
);