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

{props.msg}

A cli for quickly generating project templates, supporting vite, vue3, react, element-plus, ant design, windicss, unocss

react vite antd be-cli
) } HelloWord.propTypes = { msg: PropTypes.string, } HelloWord.defaultProps = { msg: '', }