React Native Note:Custom Components
構建自己的 React Native 樂高。
Custom Components
想創建一個自定義組件需要建立類似如下的函式
1 | const Cat = () => { |
這樣可以將 Cat 在其他地方以 JSX 語法呼叫如下
1 | const Cafe = () => { |
若要讓自定義組建使用外部傳入的參數,需要定義並指定 props
1 | type CatProps = { |
構建自己的 React Native 樂高。
Custom Components
想創建一個自定義組件需要建立類似如下的函式
1 | const Cat = () => { |
這樣可以將 Cat 在其他地方以 JSX 語法呼叫如下
1 | const Cafe = () => { |
若要讓自定義組建使用外部傳入的參數,需要定義並指定 props
1 | type CatProps = { |