import * as React from 'react'; import Button from '@material-ui/core/Button'; import './Hello.scss' export interface HelloProps { compiler: string; framework: string; } export default class Hello extends React.Component { render() { function print() { console.log(13) } return (

Hello from {this.props.compiler} and {this.props.framework}

名字颜色
); } }