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.
23 lines (20 loc) • 526 B
JSX
import React, { Component } from "react";
const AlertStandAloneStyle = {
alert: {
backgroundColor: '#f0f7fd',
margin: '20px 0',
padding: '15px 30px 15px 15px',
borderLeft: '5px solid #d0e3f0',
textAlign: 'center',
fontSize: '18px',
fontWeight: 'bold'
}
};
class AlertStandAlone extends Component {
render() {
return (<div style={AlertStandAloneStyle.alert}>
{this.props.children}
</div>);
}
}
export default AlertStandAlone