@pinecodes/window

React Window component.

Usage no npm install needed!

<script type="module">
  import pinecodesWindow from 'https://cdn.skypack.dev/@pinecodes/window';
</script>

README

Window

size

A basic window component.

Usage:

import React from 'react';
import Window from '@pinecodes/window';

function App() {
  <Window title="Hello!">
    <h1>This is in a draggable / resizable window.</h1>
  </Window>
}