// src/App.jsx
function StatusLabel({ isOnline }) {
return (
{isOnline ? "Online" : "Offline"}
);
}
function App() {
return (
);
}
export default App;
/*
Notes:
- isOnline is a boolean prop, passed with curly braces ({true} /
{false}), not as a string.
- The same isOnline value drives both the displayed text and the
inline style color, via two separate ternaries.
*/