webapp/src/components/Pages/InboxPage.tsx
2022-11-23 07:12:11 +03:00

15 lines
314 B
TypeScript

import { PageWrap } from '../_shared/PageWrap'
import { InboxView } from '../Views/Inbox'
import type { PageProps } from '../types'
export const InboxPage = (props: PageProps) => {
return (
<PageWrap hideFooter={true}>
<InboxView />
</PageWrap>
)
}
// for lazy loading
export default InboxPage