How to use the admin-bro.ViewHelpers function in admin-bro

To help you get started, we’ve selected a few admin-bro examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SoftwareBrothers / admin-bro-example-app / admin / components / dashboard.jsx View on Github external
constructor(props) {
    super(props)
    this.h = new ViewHelpers()
    this.state = {
      data: {
        categories: [],
        pagesCount: 0,
        usersCount: 0,
      }
    }
  }