mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
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).
17 lines
839 B
React
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
|