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

@atomicjolt/hooks

Package Overview
Dependencies
Maintainers
4
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atomicjolt/hooks

A Set of React Hooks for Atomic Jolt

latest
npmnpm
Version
0.3.3
Version published
Maintainers
4
Created
Source

Atomic Hooks

A Set of React Hooks for Atomic Jolt

Installation

npm install --save @atomicjolt/hooks
yarn add @atomicjolt/hooks

Documentation

Docs can be found here

Usage

import { useBool } from '@atomicjolt/hooks';

const Component = () => {
  const [bool, toggle] = useBool(false);

  return (
    <div>
      <button onClick={toggle}>Toggle</button>
      <p>Bool is {bool}</p>
    </div>
  );
};

FAQs

Package last updated on 13 Mar 2025

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