webapp/src/components/Pages/AllTopicsPage.tsx

15 lines
346 B
TypeScript
Raw Normal View History

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