New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

xave-ui-kit-test

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xave-ui-kit-test

Xave custom UI library

latest
Source
npmnpm
Version
1.0.2-9
Version published
Maintainers
1
Created
Source

xave-ui-kit

Xave custom UI library

NPM JavaScript Style Guide

Install

npm install --save xave-ui-kit

Usage

Geofence

import * as React from 'react'

import { GeofenceCountry, useGeofence }  from 'xave-ui-kit'

const Example = () => {
  const { loading, rejected } = useGeofence(GeofenceCountry.SINGAPORE);
  if (loading) {
    return (
      <div>
        Loaded
      </div>
    );
  } else if (!loading && rejected) {
    return (
       <div>
        Blocked Content
      </div>
    );
  }
}

License

MIT © xave-finance

This hook is created using create-react-hook.

FAQs

Package last updated on 14 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts