import * as _ from 'lodash'; import * as React from 'react'; import { FilledImage } from 'ts/components/ui/filled_image'; export interface PhotoRailProps { images: string[]; } export const PhotoRail = (props: PhotoRailProps) => { return (
{_.map(props.images, (image: string) => { return (
); })}
); };