// @flow import * as React from 'react'; import Link from 'next/link'; import { Container, ButtonRowContainer, Label, Progression, ProgressBar } from './style'; import { PrimaryButton, GhostButton } from '../Button'; import Logo from './Logo'; type Props = { showHeaderShadow: boolean, displayProgress: boolean, totalItemsCount: number, currentCount: number, }; export default function Header(props: Props) { const { showHeaderShadow, totalItemsCount, currentCount, displayProgress } = props; return ( {currentCount} of {totalItemsCount} completed About Contribute ); }