diff options
Diffstat (limited to 'src/view/com/posts/AviFollowButton.web.tsx')
-rw-r--r-- | src/view/com/posts/AviFollowButton.web.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/posts/AviFollowButton.web.tsx b/src/view/com/posts/AviFollowButton.web.tsx index 6ad3c9f1f..90b2ddeec 100644 --- a/src/view/com/posts/AviFollowButton.web.tsx +++ b/src/view/com/posts/AviFollowButton.web.tsx @@ -1 +1,5 @@ -export {Fragment as AviFollowButton} from 'react' +import React from 'react' + +export function AviFollowButton({children}: {children: React.ReactNode}) { + return children +} |