Skip to content

Commit

Permalink
https://github.com/ecency/vision-next/issues/108
Browse files Browse the repository at this point in the history
Added loading state for profile and communities sections
  • Loading branch information
dkildar committed Oct 22, 2024
1 parent ff52ae6 commit cb032e0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { EntryListLoadingItem } from "@/features/shared";

export default function Loading() {
return (
<div className="flex flex-col gap-4">
<EntryListLoadingItem />
</div>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { EntryListLoadingItem } from "@/features/shared";

export default function Loading() {
return (
<div className="flex flex-col gap-4">
<EntryListLoadingItem />
</div>
);
}
3 changes: 2 additions & 1 deletion src/features/i18n/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@
"night-theme": "Night Theme",
"address-placeholder": "enter url or search query",
"home": "Home",
"waves": "Waves"
"waves": "Waves",
"communities": "Communities"
},
"search": {
"placeholder": "Search",
Expand Down

0 comments on commit cb032e0

Please sign in to comment.