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.

Timer.js 273B

123456789101112
  1. import React from "react";
  2. function Timer() {
  3. return(
  4. <div className="TimerDiv">
  5. <img src={process.env.PUBLIC_URL + "icons8-time.gif"} alt="timer" id="TimerPic"/>
  6. <h2 id="Seconds">0:00 s</h2>
  7. </div>
  8. )
  9. }
  10. export default Timer