mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-30 20:34:38 +01:00
6 lines
236 B
JavaScript
6 lines
236 B
JavaScript
import { hideFurnitureOn } from '@/utils/defaults';
|
|
|
|
/* Returns false if page furniture should be hidden on said route */
|
|
export const shouldBeVisible = (routeName) => !hideFurnitureOn.includes(routeName);
|
|
|
|
export const x = () => null;
|