Me learning react like an absolute chungus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
242B

  1. import Button from "./Button"
  2. const Header = ( {onAdd}) => {
  3. return (
  4. <header className='header'>
  5. <h1> Task App!</h1>
  6. <Button onClick={onAdd} text='Add' />
  7. </header>
  8. )}
  9. export default Header