'use client'; import * as React from 'react'; export const NavViewIdContext: React.Context = React.createContext< string | undefined >(undefined); export const NavPanelIdContext: React.Context = React.createContext< string | undefined >(undefined);