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

meto-slider

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meto-slider

**Meto Slider** is a lightweight, easy-to-use slider/carousel component for React applications. Easily add beautiful sliding components to your project with minimal setup.

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Meto Slider 🚀

Meto Slider is a lightweight, easy-to-use slider/carousel component for React applications.
Easily add beautiful sliding components to your project with minimal setup.

📦 Installation

Install using npm:

npm install meto-slider


👨‍🏫 Using Guide

// App.jsx or any component
import React from 'react';
import MetoSlider from 'meto-slider';
const App = () => {
  const slides = [
    <div style={{ backgroundColor: '#FF6F61', height: '300px' }}>Slide 1</div>,
    <div style={{ backgroundColor: '#6B5B95', height: '300px' }}>Slide 2</div>,
    <div style={{ backgroundColor: '#88B04B', height: '300px' }}>Slide 3</div>
  ];

  return (
    <div>
      <h2>Simple React Slider</h2>
      <MetoSlider slides={slides} />
    </div>
  );
};
export default App;



🧑‍💻 Author
Nimur Rahman Nerob
đź“§ Email: nimurnerob404@gmail.com

Keywords

meto-slider

FAQs

Package last updated on 14 May 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