forked from vergnet/application-amicale
Improved files path coherence
This commit is contained in:
parent
8bf8529331
commit
850a64571c
5 changed files with 13 additions and 13 deletions
|
@ -9,7 +9,7 @@ import AboutDependenciesScreen from '../screens/About/AboutDependenciesScreen';
|
|||
import SelfMenuScreen from '../screens/SelfMenuScreen';
|
||||
import AvailableRoomScreen from "../screens/Websites/AvailableRoomScreen";
|
||||
import BibScreen from "../screens/Websites/BibScreen";
|
||||
import DebugScreen from '../screens/DebugScreen';
|
||||
import DebugScreen from '../screens/About/DebugScreen';
|
||||
import Sidebar from "../components/Sidebar";
|
||||
import {createStackNavigator, TransitionPresets} from "@react-navigation/stack";
|
||||
import HeaderButton from "../components/HeaderButton";
|
||||
|
|
|
@ -3,8 +3,8 @@ import {createStackNavigator, TransitionPresets} from '@react-navigation/stack';
|
|||
import {createMaterialBottomTabNavigator} from "@react-navigation/material-bottom-tabs";
|
||||
|
||||
import HomeScreen from '../screens/HomeScreen';
|
||||
import PlanningScreen from '../screens/PlanningScreen';
|
||||
import PlanningDisplayScreen from '../screens/PlanningDisplayScreen';
|
||||
import PlanningScreen from '../screens/Planning/PlanningScreen';
|
||||
import PlanningDisplayScreen from '../screens/Planning/PlanningDisplayScreen';
|
||||
import ProxiwashScreen from '../screens/Proxiwash/ProxiwashScreen';
|
||||
import ProxiwashAboutScreen from '../screens/Proxiwash/ProxiwashAboutScreen';
|
||||
import ProximoMainScreen from '../screens/Proximo/ProximoMainScreen';
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
// @flow
|
||||
|
||||
import * as React from 'react';
|
||||
import ThemeManager from '../utils/ThemeManager';
|
||||
import ThemeManager from '../../utils/ThemeManager';
|
||||
import {Alert, Clipboard, ScrollView, View} from "react-native";
|
||||
import AsyncStorageManager from "../utils/AsyncStorageManager";
|
||||
import NotificationsManager from "../utils/NotificationsManager";
|
||||
import CustomModal from "../components/CustomModal";
|
||||
import AsyncStorageManager from "../../utils/AsyncStorageManager";
|
||||
import NotificationsManager from "../../utils/NotificationsManager";
|
||||
import CustomModal from "../../components/CustomModal";
|
||||
import {Button, Card, List, Subheading, TextInput, Title} from 'react-native-paper';
|
||||
|
||||
type Props = {
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
import * as React from 'react';
|
||||
import {Image, ScrollView, View} from 'react-native';
|
||||
import ThemeManager from "../utils/ThemeManager";
|
||||
import ThemeManager from "../../utils/ThemeManager";
|
||||
import HTML from "react-native-render-html";
|
||||
import {Linking} from "expo";
|
||||
import PlanningEventManager from '../utils/PlanningEventManager';
|
||||
import PlanningEventManager from '../../utils/PlanningEventManager';
|
||||
import {Card} from 'react-native-paper';
|
||||
|
||||
type Props = {
|
|
@ -4,11 +4,11 @@ import * as React from 'react';
|
|||
import {BackHandler, View} from 'react-native';
|
||||
import i18n from "i18n-js";
|
||||
import {LocaleConfig} from 'react-native-calendars';
|
||||
import WebDataManager from "../utils/WebDataManager";
|
||||
import PlanningEventManager from '../utils/PlanningEventManager';
|
||||
import WebDataManager from "../../utils/WebDataManager";
|
||||
import PlanningEventManager from '../../utils/PlanningEventManager';
|
||||
import {Avatar, Divider, List} from 'react-native-paper';
|
||||
import CustomAgenda from "../components/CustomAgenda";
|
||||
import AprilFoolsManager from "../utils/AprilFoolsManager";
|
||||
import CustomAgenda from "../../components/CustomAgenda";
|
||||
import AprilFoolsManager from "../../utils/AprilFoolsManager";
|
||||
|
||||
LocaleConfig.locales['fr'] = {
|
||||
monthNames: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
|
Loading…
Reference in a new issue