Sha256: e1e869e0612f63d40ac820af9752f0a8a584d081fbbdc90ff4b3bf6045753918
Contents?: true
Size: 314 Bytes
Versions: 25
Compression:
Stored size: 314 Bytes
Contents
import config from "../config"; export default function createLayoutStore() { return { init() { this.desktop = window.innerWidth >= config.desktopWidth; }, reflowing: false, desktop: true, desktopWidth: config.desktopWidth, get mobile() { return !this.desktop; }, }; }
Version data entries
25 entries across 25 versions & 1 rubygems