webapp/src/components/Pages/FeedPage.tsx

15 lines
325 B
TypeScript
Raw Normal View History

2022-09-22 09:37:49 +00:00
import { MainLayout } from '../Layouts/MainLayout'
import { FeedView } from '../Views/Feed'
import type { PageProps } from '../types'
export const FeedPage = (props: PageProps) => {
return (
<MainLayout>
<FeedView articles={props.articles} />
</MainLayout>
)
}
// for lazy loading
export default FeedPage