Components

Column

<Column />

Constructor

# <Column />

Colum representation in AdminBro grid. It uses bulma grid.

Example usage with Column

import { Column, Columns } from 'admin-bro'
//...
return (
  <columns>
     <column width={8}>
       Some content on the left
     </column>
     <column width={4}>
       Some content on the right
     </column>
  </columns>
 )
See:

View Source admin-bro/src/frontend/components/ui/column.tsx, line 45

Example

Layout with text blocks by using column