BlueWallet/blue_modules/Privacy.tsx

22 lines
386 B
TypeScript
Raw Normal View History

2023-03-27 21:05:22 +02:00
import React from 'react';
interface PrivacyComponent extends React.FC {
enableBlur: () => void;
disableBlur: () => void;
}
const Privacy: PrivacyComponent = () => {
// Define Privacy's behavior
return null;
};
Privacy.enableBlur = () => {
// Define the enableBlur behavior
};
Privacy.disableBlur = () => {
// Define the disableBlur behavior
};
export default Privacy;