웹 스 톰, React, Ant. Design 기반 웹 앱 데모 개발

5567 단어
전제 조건:
웹 스 톰 과 nodejs 가 설치 되 어 있 습 니 다.
create - react - app 와 yarn 설치
npm install -g create-react-app yarn
WebStorm 생 성 프로젝트 열기
설치 antd
yarn add antd --save
app. js 코드 수정
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import { Button } from 'antd';

class App extends Component {
  render() {
    return (
      <div className="App">
        <div className="App-header">
          <img src={logo} className="App-logo" alt="logo" />
          <h2>Welcome to React</h2>
        </div>
          <Button type="primary">Button</Button>
        <p className="App-intro">
          To get started, edit <code>src/App.js</code> and save to reload.
        </p>
      </div>
    );
  }
}

export default App;

app. css 코드 수정
@import '~antd/dist/antd.css';

.App {
  text-align: center;
}

실행 프로그램
yarn start
생산 환경 운영 yarn run build
-- 끝 -

좋은 웹페이지 즐겨찾기