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.

App.js 238B

1234567891011121314
  1. import { useEffect, useState} from "react";
  2. import './App.css';
  3. import Header from "./components/Header";
  4. import Body from "./components/Body";
  5. function App() {
  6. return (<>
  7. <Header/>
  8. <Body/>
  9. </>
  10. );
  11. }
  12. export default App;