webapp/src/components/Pages/HomePage.tsx

15 lines
380 B
TypeScript
Raw Normal View History

2022-09-22 09:37:49 +00:00
import { HomeView } from '../Views/Home'
import { MainLayout } from '../Layouts/MainLayout'
import type { PageProps } from '../types'
export const HomePage = (props: PageProps) => {
return (
<MainLayout>
<HomeView randomTopics={props.randomTopics} recentPublishedArticles={props.articles || []} />
</MainLayout>
)
}
// for lazy loading
export default HomePage