projeto-hit/frontend/src/App.js

16 lines
201 B
JavaScript

import React from "react";
import Routes from "./routes";
import "react-toastify/dist/ReactToastify.css";
const App = () => {
return (
<>
<Routes />
</>
);
};
export default App;