Cosmos-Server/client/src/App.jsx
2023-03-12 18:17:28 +00:00

19 lines
439 B
JavaScript

// project import
import Routes from './routes';
import ThemeCustomization from './themes';
import ScrollTop from './components/ScrollTop';
// ==============================|| APP - THEME, ROUTER, LOCAL ||============================== //
const App = () => {
return (
<ThemeCustomization>
<ScrollTop>
<Routes />
</ScrollTop>
</ThemeCustomization>
)
}
export default App;