kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
29 lines (22 loc) • 560 B
JSX
import React, {
Component,
} from 'react';
export default class HomeView extends Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="guideHome">
<div className="guideHome__panel">
<div className="guideHome__panelTitle">
Welcome to the Kibana UI Framework
</div>
<div className="guideHome__panelText">
Get started by clicking the menu button in the top left corner of the screen.
</div>
</div>
</div>
);
}
}