chore: initial commit

This commit is contained in:
2025-12-16 09:48:55 +05:30
commit 944729227d
78 changed files with 3763 additions and 0 deletions

16
example/metro.config.js Normal file
View File

@@ -0,0 +1,16 @@
const path = require('path');
const { getDefaultConfig } = require('@react-native/metro-config');
const { withMetroConfig } = require('react-native-monorepo-config');
const root = path.resolve(__dirname, '..');
/**
* Metro configuration
* https://facebook.github.io/metro/docs/configuration
*
* @type {import('metro-config').MetroConfig}
*/
module.exports = withMetroConfig(getDefaultConfig(__dirname), {
root,
dirname: __dirname,
});