From f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Mon, 19 Jul 2021 20:06:08 +0300 Subject: Apply Prettier --- app/components/local/local.tsx | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) (limited to 'app/components/local/local.tsx') diff --git a/app/components/local/local.tsx b/app/components/local/local.tsx index e6984fc..200ec01 100644 --- a/app/components/local/local.tsx +++ b/app/components/local/local.tsx @@ -1,13 +1,19 @@ -import * as React from "react" -import { StyleProp, TextStyle, TouchableOpacity, View, ViewStyle } from "react-native" -import { observer } from "mobx-react-lite" -import { color, typography } from "../../theme" -import { Text } from "../" -import { flatten } from "ramda" -import Icon from "react-native-vector-icons/MaterialCommunityIcons" +import * as React from 'react' +import { + StyleProp, + TextStyle, + TouchableOpacity, + View, + ViewStyle, +} from 'react-native' +import { observer } from 'mobx-react-lite' +import { color, typography } from '../../theme' +import { Text } from '../' +import { flatten } from 'ramda' +import Icon from 'react-native-vector-icons/MaterialCommunityIcons' const CONTAINER: ViewStyle = { - justifyContent: "center", + justifyContent: 'center', } const TEXT: TextStyle = { @@ -26,13 +32,17 @@ export interface LocalProps { /** * Describe your component here */ -export const LocalButton = observer(function LocalButton(props: LocalProps): boolean { +export const LocalButton = observer(function LocalButton( + props: LocalProps, +): boolean { const { style } = props const styles = flatten([CONTAINER, style]) return ( - + ) }) -- cgit v1.2.3