feat(home): adicionando resolucao do desafio 1

greeting
This commit is contained in:
Bernardo Cunha Ernani Waldhelm 2022-10-28 13:22:17 -03:00
parent c6f6df9c59
commit 8586343e12

View File

@ -1,4 +1,5 @@
export function greet(name) {
// implementar logica aqui
return "";
const frase = `Hello ${name}`;
return frase;
}