Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@linkcs/props-injecter

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@linkcs/props-injecter

Check if a room number is valid

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

Props-Injecter

React component that injects props to its children.

How to Use

The two following codes are equivalent:

import React from "react";
import PropsInjecter from "@linkcs/props-injecter";

const App = () => (
  <React.Fragment>
    <Foo loading counter={5} />
    <Bar loading counter={5}>
      <Foobar loading counter={5} />
    </Bar>
  </React.Fragment>
);
import React from "react";
import PropsInjecter from "@linkcs/props-injecter";

const App = () => (
  <PropsInjecter loading counter={5}>
    <Foo />
    <Bar>
      <Foobar />
    </Bar>
  </PropsInjecter>
);

FAQs

Package last updated on 06 Oct 2018

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