# Grid A grid where components can be placed in rows and columns. ```jsx import React, { Component } from 'react'; import { render, Window, App, Grid, Button, TextInput } from 'proton-native'; class Example extends Component { render() { return ( Hi ); } } render(); ``` ## Props * [enabled](#enabled) * [visible](#visible) * [padded](#padded) ## Reference ### enabled Whether the Grid is enabled. | **Type** | **Required** | **Default** | | -------- | ------------ | ----------- | | bool | No | true | ### visible Whether the Grid can be seen. | **Type** | **Required** | **Default** | | -------- | ------------ | ----------- | | bool | No | true | ### padded Whether there is padding between the components | **Type** | **Required** | **Default** | | -------- | ------------ | ----------- | | bool | No | false |