tooot/src/screens/Tabs/Me/Settings/index.tsx

22 lines
537 B
TypeScript
Raw Normal View History

import { isDevelopment } from '@utils/helpers/checkEnvironment'
2021-01-27 00:35:34 +01:00
import React from 'react'
2021-01-13 01:03:46 +01:00
import { ScrollView } from 'react-native-gesture-handler'
import SettingsAnalytics from './Analytics'
import SettingsApp from './App'
import SettingsDev from './Dev'
import SettingsTooot from './Tooot'
2021-01-07 19:13:09 +01:00
2021-05-09 21:59:03 +02:00
const TabMeSettings: React.FC = () => {
return (
2021-01-13 01:03:46 +01:00
<ScrollView>
2021-01-27 00:35:34 +01:00
<SettingsApp />
<SettingsTooot />
<SettingsAnalytics />
2021-01-18 00:23:40 +01:00
2022-01-02 22:28:33 +01:00
{isDevelopment ? <SettingsDev /> : null}
2021-01-13 01:03:46 +01:00
</ScrollView>
)
2020-11-28 17:07:30 +01:00
}
2021-05-09 21:59:03 +02:00
export default TabMeSettings