From 8ff179bf3e9b2179f6540dd094c14a016d41713a Mon Sep 17 00:00:00 2001 From: Rubens Mariuzzo Date: Wed, 8 Nov 2017 21:39:38 -0400 Subject: [PATCH] Added prior work and fixed a typo. --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 983fdca..8fe8cbf 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ const Demo = () => ( ) ``` -When **``** is mounted a popup window will be opened. When unounted then the popup will be closed. +When **``** is mounted a popup window will be opened. When unmounted then the popup will be closed. The `children` contents is what will be rendered into the new popup window. In that case `Hi 👋` will be the content. The content can include any react-stateful code. @@ -65,7 +65,7 @@ To start contributing to this project, please do: 2. Do your work. 3. Create a PR. -### Releases +## Releases To release this project the following tasks should be done: @@ -73,6 +73,10 @@ To release this project the following tasks should be done: 2. Bump version and create tag: `npm version #.#.# -m 'Version %s.'`. 3. Push new created tag: `git push origin --tags`. +### Prior work + + - [react-popout](https://github.com/JakeGinnivan/react-popout). + ---