### Basic Burger Menu Example Source: https://docs.guidewire.com/jutro/documentation/10.10/page-layouts/components/burger-menu Provides a basic example of the Burger Menu component, showing how to manage its open/closed state via the 'open' prop and 'onOpenChange' callback. ```javascript function BurgerMenuBasic() { const [open, setOpen] = useState(false); const onOpenChange = (isOpen: boolean) => setOpen(isOpen); return (

Menu

); } ``` -------------------------------- ### WizardPage Component Usage Example Source: https://docs.guidewire.com/jutro/documentation/10.10/wizard Demonstrates how to import and use the WizardPage component from the '@jutro/wizard-next' package in a React application. It shows basic setup with navigation paths and passing children. ```javascript import { WizardPage } from '@jutro/wizard-next'; import { useLocation } from 'react-router-dom'; const myWizardPage = () => { const location = useLocation(); return ( Account wizard page ); }; ``` -------------------------------- ### Switch Component Usage Example Source: https://docs.guidewire.com/jutro/documentation/10.10/switch Demonstrates the basic usage of the Switch component by rendering it with a label. ```jsx ``` -------------------------------- ### Basic Switch Example Source: https://docs.guidewire.com/jutro/documentation/10.10/switch Demonstrates the fundamental usage of the Switch component with a label. This is the simplest way to render a switch. ```jsx ``` -------------------------------- ### Notification Action Component Example Source: https://docs.guidewire.com/jutro/documentation/10.10/notification-action This example showcases the basic implementation of the NotificationAction component. It includes a renderTrigger prop to control visibility, and defines links for the header and footer, demonstrating how to integrate custom logic and navigation. ```javascript (