feat(greeting): desenvolvimento da funcao

This commit is contained in:
Filipe Quintanilha Evangelista 2022-10-28 12:43:47 -03:00
parent c6f6df9c59
commit 3836bb39d5

View File

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