2.3.0 • Published 2 years ago

rmodal-component v2.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

rmodal-component

Full Document

Demo

Install

npm install --save rmodal-component

Usage

import React, {useState} from 'react';
import Modal from 'rmodal-component';
import 'rmodal-component/dist/index.css'

const Example = () => {
    const [show, setShow] = useState(false);
    
    return (
        <div>
            <Modal show={show} onClose={() => setShow(false)} smModal={true} lockBodyScroll={true} modalTitle={"modal Title"}>
                ...
            </Modal>
        </div>
    );
};

export default Example;

License

MIT © MostafaRostami72

2.3.0

2 years ago

2.2.0

3 years ago

2.1.1

3 years ago

2.0.1

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.1.3

3 years ago

1.2.1

3 years ago

1.1.2

3 years ago

1.0.0

4 years ago