prueba.astro 164 B

1234567891011121314
  1. ---
  2. interface props{
  3. nombre: string;
  4. precio: number;
  5. }
  6. const {nombre, precio} = Astro.props;
  7. ---
  8. <div>
  9. <h1>{nombre}</h1>
  10. <h4>{precio}</h4>
  11. </div>