15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
![]() |
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
|