refactor src folder structure
This commit is contained in:
parent
0bfb70af8b
commit
d0e26e2882
30 changed files with 94 additions and 134 deletions
|
@ -2,14 +2,14 @@ import React, { useEffect } from 'react';
|
|||
import { Redirect, useRouter } from 'expo-router';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
import '@/lib/localization/i18n';
|
||||
import '@/src/localization/i18n';
|
||||
|
||||
import { ThemedText } from '@/lib/components/ThemedText';
|
||||
import { ThemedView } from '@/lib/components/ThemedView';
|
||||
import { useToken } from '@/lib/context/AppProvider';
|
||||
import { Request } from '@/lib/services/request';
|
||||
import { store } from '@/lib/store/store';
|
||||
import { setSession } from '@/lib/store/dataStore';
|
||||
import { ThemedText } from '@/src/components/themed/ThemedText';
|
||||
import { ThemedView } from '@/src/components/themed/ThemedView';
|
||||
import { useToken } from '@/src/context/AppProvider';
|
||||
import { Request } from '@/src/services/request';
|
||||
import { store } from '@/src/store/store';
|
||||
import { setSession } from '@/src/store/dataStore';
|
||||
|
||||
export default function OnboardStartScreen() {
|
||||
const { token, isLoading } = useToken();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue