Skip to content

Instantly share code, notes, and snippets.

@goellner
goellner / DebugGrid.js
Created May 7, 2021 14:06
Debug Grid Tailwind
import isNil from 'lodash/isNil'
export default class DebugGrid {
constructor() {
this.debugGrid = document.querySelector('.js-debug-grid')
this.gridVisible = false
}
init() {
if (!isNil(this.debugGrid)) {