This commit is contained in:
2025-06-16 13:37:14 +02:00
parent ac273655e6
commit a8b82208f7
5100 changed files with 737524 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import './style.css';
import KernelStatus from '../KernelStatus/KernelStatus.jsx';
export default function StatusBar({ links }) {
return (
<div class="status-bar">
<KernelStatus />Kernel ready {links.length} links loaded Ready for interaction
</div>
);
}