mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
[web] Create review panel navigation GitOrigin-RevId: abed4171e9fd52de2f137a6cf7456791bc2ca161
5 lines
202 B
TypeScript
5 lines
202 B
TypeScript
import { SubView } from '../../../../../types/review-panel'
|
|
|
|
export const isCurrentFileView = (view: SubView) => view === 'cur_file'
|
|
export const isOverviewView = (view: SubView) => view === 'overview'
|