mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 12:33:26 +00:00
42 lines
860 B
TypeScript
42 lines
860 B
TypeScript
import React from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { ExternalLink } from './ExternalLink';
|
|
import { MonoText } from './StyledText';
|
|
import { Text, View } from './Themed';
|
|
import Colors from '../constants/Colors';
|
|
|
|
export default function EditScreenInfo({ path }: { path: string }) {
|
|
return <View />;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
getStartedContainer: {
|
|
alignItems: 'center',
|
|
marginHorizontal: 50,
|
|
},
|
|
homeScreenFilename: {
|
|
marginVertical: 7,
|
|
},
|
|
codeHighlightContainer: {
|
|
borderRadius: 3,
|
|
paddingHorizontal: 4,
|
|
},
|
|
getStartedText: {
|
|
fontSize: 17,
|
|
lineHeight: 24,
|
|
textAlign: 'center',
|
|
},
|
|
helpContainer: {
|
|
marginTop: 15,
|
|
marginHorizontal: 20,
|
|
alignItems: 'center',
|
|
},
|
|
helpLink: {
|
|
paddingVertical: 15,
|
|
},
|
|
helpLinkText: {
|
|
textAlign: 'center',
|
|
},
|
|
});
|