feat(greeting): adicionando a logica da funcao

This commit is contained in:
Guilherme Carvalho da Rosa 2022-10-28 16:27:30 -03:00
parent c6f6df9c59
commit 1818f4fd95

View File

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