Round 3: rewrite in React Native

This commit is contained in:
Niklas Korz 2024-01-01 19:50:01 +01:00
parent 13d7ebb061
commit 8a74d3e2c9
50 changed files with 19136 additions and 5288 deletions

10
app/babel.config.js Normal file
View file

@ -0,0 +1,10 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
'react-native-reanimated/plugin',
],
};
};