DocSpace-buildtools/web/ASC.Web.Client/src/App.js

14 lines
251 B
JavaScript
Raw Normal View History

import React from "react";
import ErrorBoundary from "@appserver/common/components/ErrorBoundary";
import Shell from "studio/shell";
2021-02-20 07:59:40 +00:00
const App = () => {
return (
<ErrorBoundary>
<Shell />
</ErrorBoundary>
);
2021-02-20 07:59:40 +00:00
};
export default App;