15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
![]() |
import { PageWrap } from '../_shared/PageWrap'
|
||
|
import { InboxView } from '../Views/Inbox'
|
||
|
import type { PageProps } from '../types'
|
||
|
|
||
|
export const InboxPage = (props: PageProps) => {
|
||
|
return (
|
||
|
<PageWrap>
|
||
|
<InboxView />
|
||
|
</PageWrap>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
// for lazy loading
|
||
|
export default InboxPage
|