mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
import { enabled } from 'react-native-privacy-snapshot';
|
|
export default class Privacy {
|
|
static enableBlur() {
|
|
enabled(true);
|
|
}
|
|
|
|
static disableBlur() {
|
|
enabled(false);
|
|
}
|
|
}
|