/json2bootgrid

Convert json to awesome bootstrap grid ✌️

Primary LanguageJavaScriptMIT LicenseMIT

json2bootgrid

Convert json to bootstrap grid with color, width and content

Blog post

Usage

Snippet

    window.onload = () => {
      let a = {
        rows: [
          {
            columns: [
              {
                text: 'col 1',
                width: 6,
                color: 'green'
              },
              {
                text: 'col 2',
                width: 6,
                color: 'yellow'
              }
            ]
          }
        ]
      }
      document.getElementById('app').innerHTML = json2bootgrid(a);
    }

Output

License

Distributed under the MIT License.