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/apps/meteor/client/views/conference/ConferenceRoute.tsx

15 lines
366 B

import type { ReactElement } from 'react';
import React from 'react';
import AuthenticationCheck from '../root/MainLayout/AuthenticationCheck';
import ConferencePage from './ConferencePage';
const ConferenceRoute = (): ReactElement => {
return (
<AuthenticationCheck guest>
<ConferencePage />
</AuthenticationCheck>
);
};
export default ConferenceRoute;