aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/jobs/photo_rail.tsx
blob: a5ccfb25fc6995431812faec23477266f2f9f6a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 (
        <div className="clearfix" style={{ height: 491 }}>
            {_.map(images, (image: string) => {
                return (
                    <div key={image} className="col lg-col-4 md-col-4 col-12 center" style={{ height: '100%' }}>
                        <FilledImage src={image} />
                    </div>
                );
            })}
        </div>
    );
};