feat(greeting): Responde função 01

This commit is contained in:
Affonso Kopmann 2022-10-28 16:29:24 -03:00
parent c6f6df9c59
commit 171a7568c7

View File

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