teableio/teable

View on GitHub
packages/sdk/src/components/comment/comment-list/context.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { createContext } from 'react';
interface ICommentListProps {
  isMe: boolean;
}

export const CommentListContext = createContext<ICommentListProps>({
  isMe: false,
});