summaryrefslogtreecommitdiff
path: root/client/src/components/Header/Header.jsx
blob: d5e08c43672d62ff64f0ee6a5de7d41342252093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react'
import styles from './Header.module.css'

const Header = ({ subheading }) => {
  return (
    <header className={styles.header}>
      <img src={`${process.env.PUBLIC_URL}/favicon.ico`} />
      <h3 className={styles.header__subheading}>{subheading}</h3>
    </header>
  )
}

export default Header