core-component-library
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
17 lines (15 loc) • 410 B
JavaScript
import React from 'react';
export default class SideBar extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<div style={{ width: this.props.barWidth, height: "100%", backgroundColor: this.props.barColor }}>
<p>{this.props.barText}</p>
</div>
)
}
}