import React from 'react'; import PropTypes from 'prop-types'; /* Panel with title */ class TitlePanel extends React.Component { static propTypes = { // simple title text title: PropTypes.string, }; constructor (props: TitlePanelProps) { super(props); } render () { return (

{this.props.title || 'Welcome to Webcodesk!'}

); } } export default TitlePanel;