mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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'
|