测试
全部博文(931)
分类: 架构设计与优化
2020-02-09 14:46:58
在MyApp.jsx里引入UI5针对React框架的开发的Card web Component:
代码如下:
import React from 'react'
import { Card } from "@ui5/webcomponents-react";
export function MyApp() {
return (
);
}
然后和正常的React应用一样,在App.js里引入我们自定义的Component:
代码如下:
import React from "react";
import { MyApp } from "./MyApp";
import { ThemeProvider } from "@ui5/webcomponents-react/lib/ThemeProvider";
function App() {
return (
);
}
export default App;
这个Card Component是SAP发布的针对React框架的标准组件。
可以在这个链接里看到明细:
开发完毕后,npm start可以看到效果了: