repository to manage all files for 1_2_oder_3 interaction game for Inf2/2 Interaktionen SoSe23 from Engert, Caliskan and Bachiri
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.

StartButton.js 240B

12345678910111213
  1. function StartButton({onClick, content}) {
  2. return(
  3. <>
  4. <button className="MyButton" id="StartButton" onClick={onClick}>
  5. {content}
  6. </button>
  7. </>
  8. )
  9. }
  10. export default StartButton