From dce3fb5bb780d9b364b357e04596ac15864c74fb Mon Sep 17 00:00:00 2001 From: DragonSpirit Date: Mon, 14 Oct 2019 12:40:58 +0300 Subject: [PATCH] update codestyle --- App/Screens/ShareScreen/ShareScreen.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/App/Screens/ShareScreen/ShareScreen.tsx b/App/Screens/ShareScreen/ShareScreen.tsx index cd93ad6e..66c5afcf 100644 --- a/App/Screens/ShareScreen/ShareScreen.tsx +++ b/App/Screens/ShareScreen/ShareScreen.tsx @@ -15,15 +15,15 @@ // along with Sh**t! I Smoke. If not, see . import * as Sharing from 'expo-sharing'; -import React, { createRef, useEffect, useContext } from 'react'; +import React, { createRef, useContext, useEffect } from 'react'; import { Platform, Share, StyleSheet, View } from 'react-native'; import { captureRef } from 'react-native-view-shot'; import { NavigationInjectedProps } from 'react-navigation'; import { Button } from '../../components'; import { i18n } from '../../localization'; +import { ApiContext } from '../../stores'; import * as theme from '../../util/theme'; import { ShareImage } from './ShareImage'; -import { ApiContext } from '../../stores'; type ShareScreenProps = NavigationInjectedProps;