Init
This commit is contained in:
10
src/components/StatusBar/StatusBar.jsx
Normal file
10
src/components/StatusBar/StatusBar.jsx
Normal 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>
|
||||
);
|
||||
}
|
11
src/components/StatusBar/style.css
Normal file
11
src/components/StatusBar/style.css
Normal file
@@ -0,0 +1,11 @@
|
||||
.status-bar {
|
||||
font-size: 0.85rem;
|
||||
color: #586069;
|
||||
padding: 10px 0;
|
||||
border-top: 1px solid #e1e4e8;
|
||||
margin-top: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user