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/home/CustomHomePage.tsx

20 lines
638 B

import type { ReactElement } from 'react';
import React from 'react';
import Page from '../../components/Page/Page';
import PageScrollableContentWithShadow from '../../components/Page/PageScrollableContentWithShadow';
import HomePageHeader from './HomePageHeader';
import CustomContentCard from './cards/CustomContentCard';
const CustomHomePage = (): ReactElement => {
return (
<Page data-qa='page-home' data-qa-type='custom' color='default' background='tint'>
<HomePageHeader />
<PageScrollableContentWithShadow>
<CustomContentCard />
</PageScrollableContentWithShadow>
</Page>
);
};
export default CustomHomePage;