Files
jellyfin-audio-player/src/screens/Settings/index.tsx

20 lines
622 B
TypeScript
Raw Normal View History

import React from 'react';
import { View, SafeAreaView, ScrollView } from 'react-native';
2020-07-26 14:45:32 +02:00
import { Header } from 'components/Typography';
import { colors } from 'components/Colors';
import Library from './components/Library';
import Cache from './components/Cache';
2020-06-16 23:11:05 +02:00
export default function Settings() {
return (
<ScrollView>
<SafeAreaView>
<View style={{ padding: 20 }}>
2020-07-26 14:45:32 +02:00
<Header style={colors.text}>Settings</Header>
<Library />
<Cache />
2020-06-16 23:11:05 +02:00
</View>
</SafeAreaView>
</ScrollView>
);
}