tooot/src/screens/Tabs/Me/Root/MyInfo.tsx

15 lines
306 B
TypeScript
Raw Normal View History

2021-01-30 01:29:15 +01:00
import AccountHeader from '@screens/Tabs/Shared/Account/Header'
import AccountInformation from '@screens/Tabs/Shared/Account/Information'
2021-04-24 15:03:17 +02:00
import React from 'react'
2020-11-22 00:46:23 +01:00
2023-01-02 02:08:12 +01:00
const MyInfo: React.FC = () => {
2020-11-22 00:46:23 +01:00
return (
<>
2023-01-02 02:08:12 +01:00
<AccountHeader />
<AccountInformation />
2020-11-22 00:46:23 +01:00
</>
)
}
export default MyInfo