import { useState } from 'react'; import { ToolbarViewProps } from './ToolbarView.types'; export function ToolbarView(props: ToolbarViewProps): JSX.Element { const [ isInRoom, setIsInRoom ] = useState(false); const unseenInventoryCount = 0; const unseenFriendListCount = 0; const unseenAchievementsCount = 0; return (
); }