diff options
Diffstat (limited to 'app/components/local/local.tsx')
-rw-r--r-- | app/components/local/local.tsx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app/components/local/local.tsx b/app/components/local/local.tsx new file mode 100644 index 0000000..82ea0ee --- /dev/null +++ b/app/components/local/local.tsx @@ -0,0 +1,37 @@ +import * as React from "react" +import { StyleProp, TextStyle, View, ViewStyle } from "react-native" +import { observer } from "mobx-react-lite" +import { color, typography } from "../../theme" +import { Text } from "../" +import { flatten } from "ramda" + +const CONTAINER: ViewStyle = { + justifyContent: "center", +} + +const TEXT: TextStyle = { + fontFamily: typography.primary, + fontSize: 14, + color: color.primary, +} + +export interface LocalProps { + /** + * An optional style override useful for padding & margin. + */ + style?: StyleProp<ViewStyle> +} + +/** + * Describe your component here + */ +export const Local = observer(function Local(props: LocalProps) { + const { style } = props + const styles = flatten([CONTAINER, style]) + + return ( + <View style={styles}> + <Text style={TEXT}>Hello</Text> + </View> + ) +}) |