0.2.0 • Published 1 year ago

skz-ui v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Skz UI

NPM version Build npm-typescriptLicense]github-license-url

A React component library with some cool features !

Installation:

npm install skz-ui

or

yarn add skz-ui

Usage :

Add Modal to your component:

import React, { useState } from 'react';
import { Modal } from 'skz-ui';

const App = () => {
    const [openModal, setOpenModal] = useState(false);

    return (
        <div className="App">
            <button onClick={() => setOpenModal(true)}>
                Open modal
            </button>
            <Modal 
                open={openModal}
                onClose={() => setOpenModal(false)}
                body={
                    <p>Hello world !</p>
                }
            />
        </div>
    );
}
0.1.0

1 year ago

0.1.2

1 year ago

0.2.0

1 year ago

0.1.1

1 year ago

0.1.8

1 year ago

0.0.9

2 years ago

0.1.7

1 year ago

0.1.9

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago