## Window
Usage example:
```typescript jsx
import {
Window,
Text,
VStack,
Skeleton,
SidebarItemType
} from '@project-1114/ui-kit'
const sidebarItems: SidebarItemType[] = [
{ description: Link1, onClick: () => console.log('Click on item 1') },
{ description: Link2, onClick: () => console.log('Click on item 2') },
{ description: Link3, onClick: () => console.log('Click on item 3') },
]
export function App(){
const [openWindow, setWindowIsOpen] = useState(false);
const onShowWindow = () => {
setWindowIsOpen(true);
}
const onCloseWindow = () => {
setWindowIsOpen(false);
}
return (
}
lazy
sidebar={sidebarItems}
fullscreen
portalElement={document.getElementById('root') ?? document.body}
/>
)
}
```