import React from 'react'; import type { Meta } from '@storybook/react-vite'; import { useWindow } from '../ReactWindow'; import { StandaloneWindow } from './StandaloneWindow'; const meta: Meta = { title: 'console/window/standalone', parameters: { layout: 'fullscreen', }, }; export default meta; export const Demo = () => { let win = useWindow(); return (
Click the buttons above to open different windows. Try maximizing, minimizing, and resizing them. The toggle button in the bottom-right controls the dock sidebar.