Created
April 8, 2023 02:18
-
-
Save robwormald/21579189e307c498919ef7a87c591d59 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const helloWorld = (props) => ngHtml`<h1>Hello ${props.name}</h1>` | |
const TodoItemTemplate = props => ngHtml`<li>${props.$index} - ${props.name}</li>` | |
function TodoAppComponent(){ | |
const todoService = inject(TodoService); | |
return ngHtml` | |
<h3>Todos</h3> | |
<ul>${ngRepeat(todoService.todos, TodoItemTemplate)}</ul>` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment