Installation de React Native Paper

This commit is contained in:
2024-12-09 21:00:15 +01:00
parent c08fbb762a
commit a9cb1ec425
16 changed files with 291 additions and 181 deletions

11
client/babel.config.js Normal file
View File

@ -0,0 +1,11 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
env: {
production: {
plugins: ['react-native-paper/babel'],
},
},
}
}