Skip to content

Ceall8650/learn-react-from-hook-realtime-weather-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

【從 Hooks 開始,讓網頁 React 起來】台灣好天氣 - 臺灣即時天氣 App 🇹🇼

create-react-app 更新異動

create-react-app 在 v4 版本的 API 有變更,建立專案時請以下述指令執行,才會開啟 Progressive Web App 的功能:

# <my-app> 請換成專案想取的名稱
npx create-react-app <my-app> --template cra-template-pwa

進一步的說明請參考 CRA 建立專案方式異動

emotion 更新異動

在 emotion 11 中,將原本的套件名稱從 @emotion/core 改為 @emotion/react,並將 emotion-theming 這個套件整併到 @emotion/react 內。因此在安裝 emotion 時,可將指令修改為:

# 安裝 emotion11
npm install @emotion/react @emotion/styled

進一步的說明請參考 emotion 安裝方式異動

補充連結

學習 React 前可以閱讀

React 相關

Styled Components 相關

部署屬相關

其他

版權宣告

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.8%
  • HTML 3.1%
  • CSS 1.1%