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.

Body.js 308B

123456789101112131415
  1. import React from "react";
  2. import Buttons from "./Buttons";
  3. import Answers from "./Answers";
  4. import ScoreBoard from "./ScoreBoard";
  5. function Body() {
  6. return(
  7. <div className="Body">
  8. <Buttons/>
  9. <Answers/>
  10. <ScoreBoard/>
  11. </div>
  12. )
  13. }
  14. export default Body