I\'m currently playing around with React Native. I\'m trying to structure my app, however it\'s starting to get messy with imports.
--app/ -- /components
The react documentation explain how to do that: https://create-react-app.dev/docs/importing-a-component/#absolute-imports
just add a jsconfig.json in your project root:
{ "compilerOptions": { "baseUrl": "src" }, "include": ["src"] }