Moved files to follow new project structure

This commit is contained in:
Arnaud Vergnet 2020-03-30 15:49:54 +02:00
parent 4b370d5810
commit 5bf1e7586b
3 changed files with 2 additions and 2 deletions
__tests__/managers
managers
screens/Amicale

View file

@ -1,5 +1,5 @@
import React from 'react';
import ConnectionManager, {ERROR_TYPE} from "../ConnectionManager";
import ConnectionManager, {ERROR_TYPE} from "../../managers/ConnectionManager";
const fetch = require('isomorphic-fetch'); // fetch is not implemented in nodeJS but in react-native
const c = ConnectionManager.getInstance();

View file

@ -3,7 +3,7 @@
import * as React from 'react';
import {Keyboard, KeyboardAvoidingView, StyleSheet, TouchableWithoutFeedback, View} from "react-native";
import {Button, Text, TextInput, Title} from 'react-native-paper';
import ConnectionManager from "../../utils/ConnectionManager";
import ConnectionManager from "../../managers/ConnectionManager";
type Props = {
navigation: Object,