Skip to content

Instantly share code, notes, and snippets.

@yano3nora
Last active July 15, 2023 04:31
Show Gist options
  • Save yano3nora/ba2804e490c5719b988fd92368021c7c to your computer and use it in GitHub Desktop.
Save yano3nora/ba2804e490c5719b988fd92368021c7c to your computer and use it in GitHub Desktop.
react-new-window #react #js

Overview

rmariuzzo/react-new-window - github.com
Storybook

Getting Started

$ npm i react-new-window
import React from 'react'
import NewWindow from 'react-new-window'
import { useDisclosure, Button } from '@chakra-ui/react'

export const MyContainer = () => {
  const {
    isOpen,
    onOpen,
    onClose,
  } = useDisclosure()

  return <>
    <Button onClick={onOpen}>
      click
    </Button>
    {
      isOpen &&
      <NewWindow onUnload={onClose}>
        <h1>Hi 👋</h1>
      </NewWindow>
    }
  </>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment