summaryrefslogtreecommitdiff
path: root/src/components/Header/Header.jsx
blob: 5873213c45cc528b820fa1630bb78f027742dedd (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}>
      <h1>AADHAAR</h1>
      <h3>{subheading}</h3>
    </header>
  );
};

export default Header;