New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@phntms/ft-react-components

Package Overview
Dependencies
Maintainers
4
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phntms/ft-react-components

A collection of UI/utility react components for NextJS FT sites

  • 0.0.1-rc.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14
decreased by-73.58%
Maintainers
4
Weekly downloads
 
Created
Source

PACKAGE-NAME

NPM version Actions Status PR Welcome

Package one-liner overview.

Introduction

Package introduction, couple of paragraphs.

import useLibrary from "@phntms/PACKAGE-NAME";

const { something } = useLibrary({
  argument1: "something",
  argument2: "something else",
});

Installation

Install this package with npm.

npm i @phntms/PACKAGE-NAME

Usage

Example 1 description.

import React from 'react';
import useLibrary from '@phntms/PACKAGE-NAME';

const SomeExample = () = {
  const { something } = useApi({
    argument1: "something",
    argument2: "something else",
  });

  return (
    <>
      <h1>Result</h2>
      <p>{something}</p>
    </>
  );
}

Example 2 description.

import React from 'react';
import useLibrary from '@phntms/PACKAGE-NAME';

const SomeExample2 = () = {
  const { something } = useApi({
    argument1: "something",
    argument2: "something else",
  });

  return (
    <>
      <h1>Result</h2>
      <p>{something}</p>
    </>
  );
}

API

Input

  • argument1 : Required - Description of argument.
  • argument2 : Optional - Description of argument.

Output

  • something: Description of output.

Keywords

FAQs

Package last updated on 03 Mar 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc