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.story.tsx | 14 +++++++------- app/components/local/local.tsx | 34 ++++++++++++++++++++++------------ 2 files changed, 29 insertions(+), 19 deletions(-) (limited to 'app/components/local') diff --git a/app/components/local/local.story.tsx b/app/components/local/local.story.tsx index b161f0e..2bfa065 100644 --- a/app/components/local/local.story.tsx +++ b/app/components/local/local.story.tsx @@ -1,12 +1,12 @@ -import * as React from "react" -import { storiesOf } from "@storybook/react-native" -import { StoryScreen, Story, UseCase } from "../../../storybook/views" -import { color } from "../../theme" -import { Local } from "./local" +import * as React from 'react' +import { storiesOf } from '@storybook/react-native' +import { StoryScreen, Story, UseCase } from '../../../storybook/views' +import { color } from '../../theme' +import { Local } from './local' -storiesOf("Local", module) +storiesOf('Local', module) .addDecorator((fn) => {fn()}) - .add("Style Presets", () => ( + .add('Style Presets', () => ( 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