feat(greeting): implementa function

This commit is contained in:
Cainã Milech 2022-10-28 17:21:57 -03:00
parent c6f6df9c59
commit 043eb1c50e

View File

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