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.

17 lines
371B

  1. import * as react from 'react'
  2. type HeaderProps = {
  3. addColumn: () => void
  4. }
  5. const Header = ( props: HeaderProps ) => {
  6. return(
  7. <div className="header" style= {{backgroundColor: 'grey', height: 60 }}>
  8. <button> Add task </button>
  9. <button onClick={props.addColumn}> Add column </button>
  10. </div>
  11. )
  12. }
  13. export default Header