mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 10:58:23 -05:00
Remove unused label component
This commit is contained in:
parent
333d52d2b6
commit
fb57c25afd
2 changed files with 0 additions and 24 deletions
|
@ -1,21 +0,0 @@
|
||||||
var React = require('react');
|
|
||||||
var classNames = require('classnames');
|
|
||||||
|
|
||||||
require('./label.scss');
|
|
||||||
|
|
||||||
var Label = React.createClass({
|
|
||||||
type: 'Label',
|
|
||||||
render: function () {
|
|
||||||
var classes = classNames(
|
|
||||||
'label',
|
|
||||||
this.props.className
|
|
||||||
);
|
|
||||||
return (
|
|
||||||
<label {... this.props} className={classes}>
|
|
||||||
{this.props.children}
|
|
||||||
</label>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
module.exports = Label;
|
|
|
@ -1,3 +0,0 @@
|
||||||
.label {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
Loading…
Reference in a new issue