@if (postQuery.isPending()) {
Loading...
} @else if (postQuery.isError()) {
Error: {{ postQuery.error().message }}
}
@if (postQuery.isSuccess()) {
@let post = postQuery.data();
{{ post.title }}
@if (postQuery.isFetching()) {
Background Updating...
}
}