摘要: ## Basic node image ```Dockerfile FROM node:12-stretch COPY index.js index.js CMD ["node", "index.js"] ``` Build docker image: `docker build -t my-nod 阅读全文
posted @ 2023-08-01 14:48 Zhentiw 阅读(10) 评论(0) 推荐(0) 编辑
摘要: import React, { forwardRef } from "react"; // Declare a type that works with generic components type FixedForwardRef = <T, P = {}>( render: (props: P, 阅读全文
posted @ 2023-08-01 14:11 Zhentiw 阅读(51) 评论(0) 推荐(0) 编辑