Files
wallet/apps/extension/__mocks__/expo-blur.jsx
T
Hanzo AI 78b18797d5 init: extract wallet from lux/exchange monorepo
Copies apps/extension, apps/mobile and 10 pkgs (wallet, ui, config,
utilities, sessions, gating, notifications, analytics, eslint-config,
prices) into a standalone pnpm workspace.  Resolves merge conflict
markers in extension and mobile package.json files, strips build
artifacts (.wxt, .output, Pods).
2026-04-11 01:59:19 -07:00

17 lines
839 B
React

// Simple mock for expo-blur's BlurView
<<<<<<< HEAD
// We don't actually need to use `expo-blur` in the extension, as we just use CSS; so, we can mock it out.
=======
// This is needed to avoid the Storybook Web compilation error related to `expo-blur`, something like:
// Module parse failed: Unexpected token (29:12)
// node_modules/expo-blur/build/BlurView.web.js 29:12
// You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
// We don't actually need to use `expo-blur` in the Web App, as we just use CSS; so, we can mock it out.
// oxlint-disable-next-line react/forbid-elements -- biome-parity: oxlint is stricter here
>>>>>>> upstream/main
export const BlurView = (props) => <div {...props} />
export default BlurView