mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
b7f5f848f2
Will also allow using them when exporting HTML or PDF from CLI.
22 lines
533 B
JavaScript
22 lines
533 B
JavaScript
const React = require('react');
|
|
const { connect } = require('react-redux');
|
|
const { themeStyle } = require('lib/theme');
|
|
|
|
class TagItemComponent extends React.Component {
|
|
render() {
|
|
const theme = themeStyle(this.props.theme);
|
|
const style = Object.assign({}, theme.tagStyle);
|
|
const title = this.props.title;
|
|
|
|
return <span style={style}>{title}</span>;
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = state => {
|
|
return { theme: state.settings.theme };
|
|
};
|
|
|
|
const TagItem = connect(mapStateToProps)(TagItemComponent);
|
|
|
|
module.exports = TagItem;
|