refactor src folder structure

This commit is contained in:
Maarten 2024-08-13 09:22:08 +02:00
parent 0bfb70af8b
commit d0e26e2882
30 changed files with 94 additions and 134 deletions

View file

@ -14,14 +14,14 @@ import { AutocompleteDropdown } from 'react-native-autocomplete-dropdown';
import Modal from "react-native-modal";
import { useTranslation } from 'react-i18next';
import { ThemedText } from '@/lib/components/ThemedText';
import { ThemedView } from '@/lib/components/ThemedView';
import { Colors } from '@/lib/constants/Colors';
import { useColorScheme } from '@/lib/hooks/useColorScheme';
import { Request } from '@/lib/services/request';
import List from '@/lib/components/List';
import { store } from '@/lib/store/store';
import { setViewCategory } from '@/lib/store/dataStore';
import { ThemedText } from '@/src/components/themed/ThemedText';
import { ThemedView } from '@/src/components/themed/ThemedView';
import { Colors } from '@/src/constants/Colors';
import { useColorScheme } from '@/src/hooks/useColorScheme';
import { Request } from '@/src/services/request';
import List from '@/src/components/List';
import { store } from '@/src/store/store';
import { setViewCategory } from '@/src/store/dataStore';
export default function ExploreScreen() {
const colorScheme = useColorScheme() ?? 'light';