import * as _ from 'lodash'; import * as React from 'react'; import { FilledImage } from 'ts/pages/jobs/filled_image'; export const PhotoRail = () => { const images = ['/images/jobs/office1.png', '/images/jobs/office2.png', '/images/jobs/office3.png']; return (
{_.map(images, (image: string) => { return (
); })}
); };