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

react-component-foundry

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-component-foundry

react-component-foundry is a library of reusable React components designed to streamline your development process.

latest
npmnpm
Version
1.0.9
Version published
Maintainers
1
Created
Source

react-component-foundry

react-component-foundry is a library of reusable React components designed to streamline your development process.

📦 Installation

npm install react-component-foundry

🚀 Usage

Below are examples of how to use the components:

Importing Components

Instead of importing each component separately, you can import them all from a single entry point:

import { RMGButton, RMGHeader, RMGImage, RMGInput, RMGText } from 'react-component-foundry'; 

🔘 Example Usage of RMGButton

import React from 'react';
import { RMGButton } from 'react-component-foundry';

function App() {
  return (
    <div>
      <RMGButton title="Click Me" onClick={() => alert("Button clicked!")} />
    </div>
  );
}

export default App;

Keywords

react

FAQs

Package last updated on 23 Jun 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