mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
fix: add some tips for livedemo
This commit is contained in:
@@ -7,7 +7,20 @@ type CommentsProps = {
|
||||
resolveComment: (blockId: string, commentId: string) => void;
|
||||
};
|
||||
|
||||
export const Comments = ({
|
||||
export const Comments = (props: CommentsProps) => {
|
||||
return <StyledText>Comment coming soon...</StyledText>;
|
||||
};
|
||||
|
||||
const StyledText = styled('div')(({ theme }) => {
|
||||
return {
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
color: theme.affine.palette.menu,
|
||||
marginTop: theme.affine.spacing.lgSpacing,
|
||||
};
|
||||
});
|
||||
|
||||
export const BakComments = ({
|
||||
activeCommentId,
|
||||
resolveComment,
|
||||
}: CommentsProps) => {
|
||||
|
||||
Reference in New Issue
Block a user