2022-07-07 19:15:14 +00:00
|
|
|
import React from "react";
|
2022-01-06 01:26:15 +00:00
|
|
|
import Routes from "./routes";
|
|
|
|
import "react-toastify/dist/ReactToastify.css";
|
2022-07-07 19:15:14 +00:00
|
|
|
import GlobalStyled from "./style/GlobalStyle";
|
2022-01-06 01:26:15 +00:00
|
|
|
|
|
|
|
const App = () => {
|
|
|
|
return (
|
2022-07-07 19:15:14 +00:00
|
|
|
<>
|
|
|
|
<GlobalStyled />
|
2022-01-06 01:26:15 +00:00
|
|
|
<Routes />
|
2022-07-07 19:15:14 +00:00
|
|
|
</>
|
2022-01-06 01:26:15 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|
2022-07-07 19:15:14 +00:00
|
|
|
|