mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
9cb763a1a3
[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'
|