The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/views/root/AppRoot.tsx

18 lines
525 B

import React, { FC } from 'react';
import ConnectionStatusBar from '../../components/connectionStatus/ConnectionStatusBar';
import MeteorProvider from '../../providers/MeteorProvider';
import BannerRegion from '../banners/BannerRegion';
import BlazeLayoutWrapper from './BlazeLayoutWrapper';
import PortalsWrapper from './PortalsWrapper';
const AppRoot: FC = () => (
<MeteorProvider>
<ConnectionStatusBar />
<BannerRegion />
<PortalsWrapper />
<BlazeLayoutWrapper />
</MeteorProvider>
);
export default AppRoot;