feat(01-greeting): adiciona função

This commit is contained in:
Emerson Fully 2022-10-29 12:18:18 -03:00
parent c6f6df9c59
commit 30e966ba4e

View File

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