12
TypeScript 및 React-어린이 유형?
다음과 같이 매우 간단한 기능 구성 요소가 있습니다. import * as React from 'react'; export interface AuxProps { children: React.ReactNode } const aux = (props: AuxProps) => props.children; export default aux; 그리고 또 다른 구성 요소 : import * as React from "react"; export interface LayoutProps { children: React.ReactNode } …