--- interface props{ nombre: string; precio: number; } const {nombre, precio} = Astro.props; --- <div> <h1>{nombre}</h1> <h4>{precio}</h4> </div>