我的博客
基于React建立个人博客。
创建项目步骤
创建React应用
npx create-react-app my-app
安装ant设计
# 方式1
npm install antd -S
# 方式2
npm add antd
使用ant设计
在src / App.js中日期antd的组件
import React from 'react' ;
import { Button } from 'antd' ;
import './App.css' ;
const App = ( ) =&g