如何在现有的角度项目中使用React组件?

时间:2019-04-30 12:32:38

标签: javascript angular reactjs

我有一个react组件,想将其集成到我现有的Angular项目中。我的组件看起来像

import React from 'react';


export default function MyComponent (props) {

    return (
        <div>
            {props.message}
        </div>
    );
}

我想像这样以角度使用它:

<MyComponent message="Hello world!"/>

是否有可能做类似的事情?

0 个答案:

没有答案