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.

15 lines
320 B

5 years ago
  1. import React from 'react';
  2. import {CentreBoi, LeftBoi, RightBoi} from "./components/Bois";
  3. import {StatusContextProvider} from "./components/Contexts";
  4. function App() {
  5. return (
  6. <StatusContextProvider>
  7. <LeftBoi/>
  8. <CentreBoi/>
  9. <RightBoi/>
  10. </StatusContextProvider>
  11. );
  12. }
  13. export default App;