DocSpace-buildtools/products/ASC.Mail/Client/src/App.js

16 lines
332 B
JavaScript
Raw Normal View History

2021-09-08 13:57:40 +00:00
//import "@appserver/common/utils/wdyr";
import React from "react";
import Shell from "studio/shell";
import ErrorBoundary from "@appserver/common/components/ErrorBoundary";
import "@appserver/common/custom.scss";
const App = () => {
return (
<ErrorBoundary>
<Shell />
</ErrorBoundary>
);
};
export default App;