feat(ark): add note component to ark
This commit is contained in:
@@ -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,
|
||||
};
|
||||
Reference in New Issue
Block a user