diff --git a/src/routes/_libraries/query.$version.index.tsx b/src/routes/_libraries/query.$version.index.tsx index 99d031a9..fa931ccf 100644 --- a/src/routes/_libraries/query.$version.index.tsx +++ b/src/routes/_libraries/query.$version.index.tsx @@ -163,16 +163,20 @@ import { injectQuery } from '@tanstack/angular-query-experimental' @Component({ selector: 'todos', - standalone: true, template: \` - + @if (todos.isPending()) { Loading... - - + } @else if (todos.isError()) { + Oops! + } @else { + + } \`, }) export class TodosComponent {