(feat)finalizando teste 01 greeting

This commit is contained in:
wellington carlos 2022-10-28 19:58:55 -03:00
parent 8baf158b6a
commit b52c44f39b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

View File

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