Sliders
Avatar This is a guideline for you on how to create you first product in your store
Sliders
This is a guideline for you on how to create you first product in your store
Default
25%
Mobile Sliders
50%
React js

 import React, { useState, useEffect } from 'react';
import Sliders from './Sliders';


const SlidersComponent = () => {
   

  return (

<div>

      <Sliders initialValue={25} />


     <Sliders initialValue={25} disabled/>

   
</div>
 

  );
};

export default SlidersComponent;