[web] Review panel popovers GitOrigin-RevId: 4424abab97b197013063679bd8efcac001f458ad
7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
|
store.set('users', {})
|
|
store.set('addNewComment', () => {})
|
|
}
|