mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
423f2604db
[web] Create review panel navigation GitOrigin-RevId: abed4171e9fd52de2f137a6cf7456791bc2ca161
4 lines
202 B
TypeScript
4 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'
|