import React from "react" interface Props { name: string } export default class View extends React.Component { render() { return
Hello, {this.props.name}
} }