Fix helper function failure
This commit is contained in:
parent
caa7cfe969
commit
ed80abae81
5 changed files with 6 additions and 6 deletions
|
|
@ -5,7 +5,7 @@ import { Platform, Linking, View, ScrollView, Text, TouchableOpacity } from 'rea
|
|||
import {
|
||||
PageHeader,
|
||||
PageFooter,
|
||||
} from './generalHelpers.jsx';
|
||||
} from '../components/generalHelpers.jsx';
|
||||
import { Ionicons } from '@expo/vector-icons';
|
||||
import ActionSheet from 'react-native-actions-sheet';
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ import { Phone } from "healthicons-react-native/dist/filled";
|
|||
import {
|
||||
PageHeader,
|
||||
PageFooter,
|
||||
} from './generalHelpers.jsx';
|
||||
} from '../components/generalHelpers.jsx';
|
||||
import ActionSheet from 'react-native-actions-sheet';
|
||||
|
||||
const DepartmentActionSheet = styled(ActionSheet)``;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import {
|
|||
ExtraText,
|
||||
TextLinkContent,
|
||||
LoginTextInput
|
||||
} from './generalHelpers.jsx';
|
||||
} from '../components/generalHelpers.jsx';
|
||||
import { useWebSocketContext } from '../hooks/useWebSocketContext';
|
||||
|
||||
export default function Login() {
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import {
|
|||
MessageBox,
|
||||
LoginTextInput,
|
||||
RegisterDropdownInput,
|
||||
} from './generalHelpers.jsx';
|
||||
} from '../components/generalHelpers.jsx';
|
||||
|
||||
export default function Register() {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import styled from 'styled-components';
|
||||
import { View, Text, LayoutAnimation, Image, TextInput, TouchableOpacity, TouchableNativeFeedback, ScrollView } from 'react-native';
|
||||
import { Ionicons } from '@expo/vector-icons';
|
||||
import { Row } from '../components/Row';
|
||||
import { Container } from '../components/Container';
|
||||
import { Row } from './Row';
|
||||
import { Container } from './Container';
|
||||
|
||||
export const StyledContainer = styled.View`
|
||||
flex: 1;
|
||||
Loading…
Reference in a new issue