28-使用create-react-app

Huxzhi小于 1 分钟react18

https://www.lilichao.com/index.php/2022/03/22/# 创建React项目(自动)/open in new window

npx create-react-app react-app

App.js

import React from 'react';

const App = () => {
    return (
        <div>
            我是App
        </div>
    );
};

export default App;

index.js

import React from 'react';
import ReactDOM from 'react-dom/client';
import App from "./App";

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App/>
  </React.StrictMode>
);