Home
Documentation
Resources
Partners
Community

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Default rendering - Brand - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Default rendering

Before rendering the Brand Brick, first execute the initialization steps shared among all Bricks. From there, see below the necessary information to configure and render the Brand Brick.

Note
To consult the types and specifications of the parameters and responses of the Brick functions, refer to the technical documentation .

Configure the Brick

Create Brick's startup configuration.

javascript

bricksBuilder.create(
    "brand",
    "brandBrick_container"
  );
};

Render the Brick

Once the configurations are created, enter the code below to render the Brick.

Important
The id brandBrick_container of the html div below should correspond to the value used in the method create() of the last step.
          
<div id="brandBrick_container"></div>

        
          
import { Brand } from '@mercadopago/sdk-react';

<Brand />

        

The result of rendering the Brick should look like the image below.

brand-brick-en