App.js 282 B

12345678910111213141516171819
  1. import './App.css';
  2. import Headered from './Headered';
  3. import SectionFood from './SectionFood';
  4. import Ground from './Ground';
  5. function App() {
  6. return (
  7. <>
  8. <Headered/>
  9. <SectionFood/>
  10. <Ground/>
  11. </>
  12. );
  13. }
  14. export default App;