App
|-- application
|-- config
| |-- themes.js
| |-- redux.js
+-- views
| |-- login
| | |-- login.js
|-- index.js
index.js
....
import themes from './config/themes';
import themes from './config/redux';
...
login.js
....
import themes from '../../config/themes';
import themes from '../../config/redux';
...
Надеюсь, что так:
....
import themes from '@root/application/config/themes';
import themes from '@root/application/config/redux';
import ... from '@root/...';
...
если методы php
$root = 'User/React-Native-Project/';
include $root.'/application/config/themes.php';
Это может улучшить эффективность разработки и избежать неправильного пути и других проблем. Мой английский не очень хорошо.