diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
commit | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch) | |
tree | 575c0ff2cbb846252bd2e494c81c396846aab2f6 /app/components/local/local.tsx | |
parent | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff) |
Apply Prettier
Diffstat (limited to 'app/components/local/local.tsx')
-rw-r--r-- | app/components/local/local.tsx | 34 |
1 files changed, 22 insertions, 12 deletions
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 ( - <Icon color="#a99f1f" name="graph" - style={{position:"absolute", zIndex: 100, width: 500}} - /> + <Icon + color="#a99f1f" + name="graph" + style={{ position: 'absolute', zIndex: 100, width: 500 }} + /> ) }) |