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