react-full-window
v0.1.0
Published
React full window component
Readme
react-full-window
Install
npm i react-full-windowUsage
import { useState } from 'react';
import { FullWindow } from 'react-full-window';
const Component = () => {
const [enabled, setEnabled] = useState(false);
return (
<FullWindow enabled={enabled}>
<button onClick={() => setEnabled(!enabled)}>
Toggle full window
</button>
</FullWindow>
)
};