import * as React from 'react'; import { colors } from 'ts/style/colors'; import { ScreenWidths } from 'ts/types'; export interface MissionProps { screenWidth: ScreenWidths; } export const Mission = (props: MissionProps) => { const isSmallScreen = props.screenWidth === ScreenWidths.Sm; const image = (