mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-27 21:57:58 +00:00
8d30519efc
- Replaced shadowColor/shadowOffset/shadowOpacity/shadowRadius with boxShadow - Fixed 28 files (21 screens + 7 components) - Preserved elevation for Android compatibility - All React Native Web deprecation warnings resolved Files fixed: - All screen components - All reusable components - Navigation components - Modal components
17 lines
319 B
TypeScript
17 lines
319 B
TypeScript
/**
|
|
* Configuration Index
|
|
*
|
|
* Central export point for all configuration
|
|
*/
|
|
|
|
export { ENV, type Environment } from './environment';
|
|
export {
|
|
TEST_ACCOUNTS,
|
|
getTestAccount,
|
|
getDefaultTestAccount,
|
|
isTestAccountsEnabled,
|
|
getTestAccountAddresses,
|
|
isTestAccount,
|
|
type TestAccount,
|
|
} from './testAccounts';
|