feat(greet) Implementacao da funcao greet()

This commit is contained in:
Wellington Duarte Santos 2022-11-01 08:41:57 -03:00
parent c6f6df9c59
commit 196c702f01

View File

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