mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Use new alias
This commit is contained in:
10
App.tsx
10
App.tsx
@ -2,12 +2,12 @@ import React from 'react'
|
||||
import { AppearanceProvider } from 'react-native-appearance'
|
||||
import { QueryCache, ReactQueryCacheProvider, setConsole } from 'react-query'
|
||||
import { Provider } from 'react-redux'
|
||||
|
||||
import ThemeManager from 'src/utils/styles/ThemeManager'
|
||||
import { Index } from 'src/Index'
|
||||
import { persistor, store } from 'src/store'
|
||||
import { PersistGate } from 'redux-persist/integration/react'
|
||||
|
||||
import { Index } from './src/Index'
|
||||
import { persistor, store } from './src/store'
|
||||
import ThemeManager from '@utils/styles/ThemeManager'
|
||||
|
||||
const queryCache = new QueryCache()
|
||||
|
||||
setConsole({
|
||||
@ -33,7 +33,7 @@ const App: React.FC = () => {
|
||||
<PersistGate persistor={persistor}>
|
||||
{bootstrapped => {
|
||||
if (bootstrapped) {
|
||||
require('src/i18n/i18n')
|
||||
require('@root/i18n/i18n')
|
||||
return (
|
||||
<ThemeManager>
|
||||
<Index />
|
||||
|
Reference in New Issue
Block a user