feat(ark): add note component to ark

This commit is contained in:
reya
2023-12-19 08:06:10 +07:00
parent 55298515af
commit ec2ac2dce3
19 changed files with 898 additions and 85 deletions
+19
View File
@@ -0,0 +1,19 @@
import { NoteChild } from './child';
import { NoteContent } from './content';
import { NoteReaction } from './reaction';
import { NoteReply } from './reply';
import { NoteRepost } from './repost';
import { NoteRoot } from './root';
import { NoteUser } from './user';
import { NoteZap } from './zap';
export const Note = {
Root: NoteRoot,
User: NoteUser,
Content: NoteContent,
Reply: NoteReply,
Repost: NoteRepost,
Reaction: NoteReaction,
Zap: NoteZap,
Child: NoteChild,
};