Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kyw0716/npm-deploy-practice

npm 배포 연습
https://github.com/kyw0716/npm-deploy-practice

Last synced: about 1 month ago
JSON representation

npm 배포 연습

Awesome Lists containing this project

README

        

# MyModal 모달 라이브러리

간단한 모달을 구현할 수 있는 라이브러리입니다.

## 설치 방법

```sh
npm install woowacourse-scent-sample-modal
```

## 사용 방법

### MyModal 컴포넌트 불러오기

```js
import MyModal from 'woowacourse-scent-sample-modal';
```

### MyModal 사용하기

```js
모달 열기}>

제목


내용

```

## Props

trigger: 모달을 열기 위한 요소. React element 형태로 전달합니다.
children: 모달 내부에 들어갈 컨텐츠입니다.

### Props 예시

```js
import MyModal from 'my-modal-library';

function App() {
return (


모달 열기}>

제목


내용




);
}

export default App;
```