feat(greet):adicionando funcionalidade

This commit is contained in:
Victor Cardoso de Souza 2022-10-28 17:39:54 -03:00
parent c6f6df9c59
commit 9af48904cc

View File

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