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.

HomePageMUI.js 167B

12345678910
  1. import React from 'react';
  2. import Navbar from '../../components/MUI/Navbar';
  3. const HomePage = () => {
  4. return (
  5. <Navbar />
  6. )
  7. };
  8. export default HomePage;