“Props TSX” Respostas de código

Propções de componentes digitados

import React from 'react'
type ImageProps = {
  src: string
  alt?: string
}

const FeatureImage: React.FC<ImageProps> = ({ src }) => {
  return (
    <div className="w-[300px] md:[300px] lg:[320px] shadow-2xl font-Raleway">
      <img src={src} alt="Card Items 1" className="w-full h-auto" />
    </div>
  )
}

export default FeatureImage
Shirshak kandel

Props TSX

type GreetProps = {
  name: string;
  isTrue: boolean;
  age: number;
  handleIncrement: () => void;
  myArray: {
    name: string;
    age: number;
    color: string;
  }[];
};
Blue Baboon

Respostas semelhantes a “Props TSX”

Perguntas semelhantes a “Props TSX”

Procure respostas de código populares por idioma

Procurar outros idiomas de código