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.

Heading.js 333B

12345678910111213141516
  1. import React from "react";
  2. function Heading() {
  3. const onClick = () => {
  4. window.location.reload();
  5. }
  6. return(
  7. <div className="Heading">
  8. <img src={process.env.PUBLIC_URL + "12oder3-logo.png"} alt="1_2_oder_3" id="headingimage" onClick={onClick}/>
  9. </div>
  10. )
  11. }
  12. export default Heading