feat: finalizado greeting

This commit is contained in:
Vitor Soares 2022-10-28 11:38:54 -03:00
parent c6f6df9c59
commit 9f0206057a

View File

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