cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
21 lines (16 loc) • 428 B
JSX
import React, { Component } from "react";
const styles = {
emptyText: {
padding: '0 15px',
textShadow: '0 1px 1px rgba(0, 0, 0, 0.55)',
fontSize: '12px',
color: '#8f8f8f'
}
};
class CluedInMenuEmptyText extends Component {
render() {
const { text } = this.props;
return (<span style={styles.emptyText}>{text}</span>);
}
}
export default CluedInMenuEmptyText;