mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-14 10:35:11 +00:00
21 lines
461 B
TypeScript
21 lines
461 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020-2021 The Pybricks Authors
|
|
|
|
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
|
|
import './status-bar.scss';
|
|
|
|
class StatusBar extends React.Component {
|
|
render(): JSX.Element {
|
|
return (
|
|
<div
|
|
className="status-bar"
|
|
onContextMenu={(e): void => e.preventDefault()}
|
|
></div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect()(StatusBar);
|