Skip to main content

Command Palette

Search for a command to run...

Series

React

  1. React: Component props

    最近負責的專案遇到一點寫法上的瓶頸,codebase搞得亂七八糟的(太菜😅),所以開始看一些跟模式(pattern)有點相關的文章。 這篇筆記主要內容出自於 React component as prop: the right way™️,在講述如何傳遞元件(component)當作props。 會想傳遞components當作props,主要是為了方便分享state或props、並且讓程式碼更靈活更彈性,而文章作者將傳遞方式大致上分為三種模式: Pass components as Ele...

    Sep 3, 20232 min read17
  2. React: Depolyment - Netlify

    忘記之前部署React專案到Netlify的設定,來完整記錄一下。 React 建立部署資料夾 部署 React 專案要用 npm run build 建立build資料夾管理部署檔案。 Router 接下來在 public 資料夾,新增名為 _redirects (沒有附檔名)的檔案,並在檔案中寫入以下路徑: /* /index.html 200 原本React專案中的主要檔案 (像是 index.html ) 都放在 public 資料夾,這個設定是React用來將 public 資料夾的內...

    Sep 3, 20231 min read2
React