import React, {Component} from "react" interface ColorTitleProps { color: string // The color that should be displayed. } class ColorTitle extends Component { constructor(props: ColorTitleProps) { super(props); } render() { return (

Your favorite color is {this.props.color}!

); } } export default ColorTitle;