2022-11-16 13:44:41 +00:00
|
|
|
import { PageWrap } from '../_shared/PageWrap'
|
|
|
|
import { InboxView } from '../Views/Inbox'
|
|
|
|
import type { PageProps } from '../types'
|
|
|
|
|
|
|
|
export const InboxPage = (props: PageProps) => {
|
|
|
|
return (
|
2022-11-23 04:12:11 +00:00
|
|
|
<PageWrap hideFooter={true}>
|
2022-11-16 13:44:41 +00:00
|
|
|
<InboxView />
|
|
|
|
</PageWrap>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// for lazy loading
|
|
|
|
export default InboxPage
|