react-code-dataset
/
react-query
/examples
/angular
/simple
/src
/app
/components
/simple-example.component.html
| @if (query.isPending()) { | |
| <div>Loading...</div> | |
| } | |
| @if (query.isError()) { | |
| <div>An error has occurred: {{ query.error().message }}</div> | |
| } | |
| @if (query.data(); as data) { | |
| <h1>{{ data.name }}</h1> | |
| <p>{{ data.description }}</p> | |
| <strong>👀 {{ data.subscribers_count }}</strong> | |
| <strong>✨ {{ data.stargazers_count }}</strong> | |
| <strong>🍴 {{ data.forks_count }}</strong> | |
| } | |