feat(greeting): Implementa função greeting

This commit is contained in:
danielmoliaribarbosa 2022-10-28 14:43:15 -03:00
parent c6f6df9c59
commit 3c0bfc1f1c

View File

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