import React from 'react'; import { useAppStore } from '../../store'; import './ActivityBar.css'; // Simple SVG icons const PostsIcon = () => ( ); const MediaIcon = () => ( ); const SettingsIcon = () => ( ); const SyncIcon = () => ( ); export const ActivityBar: React.FC = () => { const { activeView, setActiveView, syncStatus, pendingChanges } = useAppStore(); const totalPending = pendingChanges.posts + pendingChanges.media; return (