import '../assets/style/hello-word.scss' import PropTypes from 'prop-types' interface IProps { msg: string } export const HelloWord = (props: IProps) => { return (
) } HelloWord.propTypes = { msg: PropTypes.string, } HelloWord.defaultProps = { msg: '', }