Entrega do Desafio #1

Merged
anacarolinaduartecavalcante merged 93 commits from feature/challenge-vtex-io into develop 2023-02-03 17:14:03 +00:00
2 changed files with 29 additions and 0 deletions
Showing only changes of commit 2c00ac7fba - Show all commits

3
react/Autores.tsx Normal file
View File

@ -0,0 +1,3 @@
import Autores from "./components/Autores/Autores";
export default Autores;

View File

@ -0,0 +1,26 @@
import React from "react";
const Autores = () => {
return (
<div className="vtex-menu-2-x-AutoresBlock">
<ul className="vtex-menu-2-x-Autores-Group">
<li className="vtex-menu-2-x-Autores-List">
Powered by
<img
src="https://agenciamagma.vteximg.com.br/arquivos/logovtex-m3academy-anacarolinaduartecavalcante.svg"
alt="ícone logo vtex"
/>
</li>
<li className="vtex-menu-2-x-Autores-List">
Developed by
<img
src="https://agenciamagma.vteximg.com.br/arquivos/logom3-m3academy-anacarolinaduartecavalcante.svg"
alt="ícone logo vtex"
/>
</li>
</ul>
</div>
);
};
export default Autores;