webapp/src/components/Pages/AllAuthorsPage.tsx

15 lines
353 B
TypeScript
Raw Normal View History

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