feat(columns): add antenas column

This commit is contained in:
2024-01-02 09:02:11 +07:00
parent a52fb3c437
commit 7856d6d49d
25 changed files with 958 additions and 45 deletions

View File

@@ -8,6 +8,7 @@
"build": "vite build"
},
"dependencies": {
"@columns/antenas": "workspace:^",
"@columns/group": "workspace:^",
"@columns/hashtag": "workspace:^",
"@columns/notification": "workspace:^",
@@ -64,7 +65,7 @@
"html-to-text": "^9.0.5",
"light-bolt11-decoder": "^3.0.0",
"lru-cache": "^10.1.0",
"markdown-to-jsx": "^7.3.2",
"markdown-to-jsx": "^7.4.0",
"minidenticons": "^4.2.0",
"nanoid": "^5.0.4",
"nostr-fetch": "^0.14.1",
@@ -81,7 +82,7 @@
"sonner": "^1.3.1",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.8",
"virtua": "^0.18.0"
"virtua": "^0.18.1"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",

View File

@@ -1,3 +1,4 @@
import { Antenas } from "@columns/antenas";
import { Group } from "@columns/group";
import { Hashtag } from "@columns/hashtag";
import { Thread } from "@columns/thread";
@@ -26,6 +27,8 @@ export function HomeScreen() {
return <Hashtag key={column.id} column={column} />;
case COL_TYPES.group:
return <Group key={column.id} column={column} />;
case COL_TYPES.antenas:
return <Antenas key={column.id} column={column} />;
default:
return <Timeline key={column.id} column={column} />;
}