Skip to content
Snippets Groups Projects
App.js 146 B
import Home from './pages/Home';
import './App.css';

function App() {
  return (
    <div>
      <Home />
    </div>
  );
}

export default App;