import React from "react"; const StatusBar = ({ togglePanel, panelVisible }) => { return (
{/* Left Section of the Status Bar */}
{/* Branch Indicator */}
main
{/* Error Indicator */}
0 errors
{/* Toggle Terminal Button */}
{/* Right Section of the Status Bar */}
{/* Line and Column Indicator */}
Ln 1, Col 1
{/* Spaces Indicator */}
Spaces: 2
{/* Encoding Indicator */}
UTF-8
{/* Connection Status */}
Connected
{/* Bell Icon */}
); }; export default StatusBar;