19 lines
467 B
TypeScript
19 lines
467 B
TypeScript
import { EnvDevelopment } from './components/EnvDevelopment/EnvDevelopment';
|
|
|
|
import { ErrorBoundary } from '@/errors/ErrorBoundary';
|
|
import { AppRoutes } from '@/scene/AppRoutes';
|
|
import { ServiceContextProvider } from '@/service/ServiceContext';
|
|
|
|
export const App = () => {
|
|
return (
|
|
<ServiceContextProvider>
|
|
<EnvDevelopment />
|
|
<ErrorBoundary>
|
|
<AppRoutes />
|
|
</ErrorBoundary>
|
|
</ServiceContextProvider>
|
|
);
|
|
};
|
|
|
|
export default App;
|