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