-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: cambios con feedback DEV011 - resaltar root, modificar instrucci…
…ones Addresses #1577 (#1587) * resaltar root, modificar instruccion de view * cambio de instrucciones en dataFunctions, cambiar el console.log para ejecutar las funciones, añadir parametro en view.js * mejorar instrucciones en dataFunctions * espacios despues comments * Quita prototipo de baja, reordenar indice --------- Co-authored-by: Ivy Feraco <[email protected]> Co-authored-by: Ivy Feraco <[email protected]>
- Loading branch information
1 parent
9aff0f9
commit 5e5338b
Showing
4 changed files
with
15 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// estas funciones son de ejemplo | ||
|
||
export const renderItems = () => { | ||
export const renderItems = (data) => { | ||
console.log(data) | ||
// Aquí comienza tu código y puedes retornar lo que tu necesites | ||
return 'example'; | ||
}; | ||
|