使用SAP UI5 Web Components開發(fā)React應用
2020-03-31 08:32:27 閱讀:- 來源:
(1) 命令行 npx create-react-app my-app --template @ui5/cra-template-webcomponents-react
創(chuàng)建名為my-app的react應用,并安裝對應的依賴。
成功執(zhí)行后,會看到Success! Created my-app at XXXX的提示信息:
進入my-app項目的src文件夾里,新建MyApp.jsx:
import React from "react";
export function MyApp() {
return
My root component
;}
在App.js里導入這個Component:
npm start
瀏覽器里輸入localhost:3000, 就能看到這個最簡單的React應用了: