-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from AlanFnz/feature/20_hold-to-record-voice-n…
…ote_phase-2 feat: hold to record voice note phase 2
- Loading branch information
Showing
82 changed files
with
1,796 additions
and
1,479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,4 @@ module.exports = { | |
process: 'readonly', | ||
global: 'readonly', | ||
}, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
module.exports = { | ||
semi: false, | ||
arrowParens: 'avoid', | ||
bracketSameLine: true, | ||
bracketSpacing: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
import React from 'react'; | ||
import Toast from 'react-native-toast-message'; | ||
import Navigation from '@navigation/index'; | ||
import AppInitializer from '@root/AppInitializer'; | ||
import toastConfig from '@config/toastConfig'; | ||
import { Provider as ReduxProvider } from 'react-redux'; | ||
import { store } from '@store/index'; | ||
import React from 'react' | ||
import { Provider as ReduxProvider } from 'react-redux' | ||
import { SafeAreaProvider } from 'react-native-safe-area-context' | ||
import Toast from 'react-native-toast-message' | ||
|
||
import Navigation from '@navigation/index' | ||
import { FolderSelectionProvider } from '@context/folder-selection' | ||
import { store } from '@store/index' | ||
import toastConfig from '@config/toast.config' | ||
import AppInitializer from '@root/app-initializer' | ||
|
||
const App: React.FC = () => { | ||
return ( | ||
<ReduxProvider store={store}> | ||
<AppInitializer /> | ||
<Navigation /> | ||
<Toast config={toastConfig} /> | ||
</ReduxProvider> | ||
); | ||
}; | ||
<SafeAreaProvider> | ||
<ReduxProvider store={store}> | ||
<FolderSelectionProvider> | ||
<AppInitializer /> | ||
<Navigation /> | ||
<Toast config={toastConfig} /> | ||
</FolderSelectionProvider> | ||
</ReduxProvider> | ||
</SafeAreaProvider> | ||
) | ||
} | ||
|
||
export default App; | ||
export default App |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import 'react-native'; | ||
import React from 'react'; | ||
import App from '../App'; | ||
import { act } from 'react-test-renderer'; | ||
import renderer from 'react-test-renderer'; | ||
import 'react-native' | ||
import React from 'react' | ||
import App from '../App' | ||
import { act } from 'react-test-renderer' | ||
import renderer from 'react-test-renderer' | ||
|
||
it('renders correctly', async () => { | ||
let tree; | ||
let tree | ||
|
||
await act(async () => { | ||
tree = renderer.create(<App />); | ||
}); | ||
tree = renderer.create(<App />) | ||
}) | ||
|
||
expect(tree).toBeTruthy(); | ||
}); | ||
expect(tree).toBeTruthy() | ||
}) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.