# Tab A component with different named tabs containing other components. Each child is required to have a label prop that is displayed at the top and names the tab. ```jsx import React, { Component } from 'react'; import { render, Window, App, Tab, TextInput } from 'proton-native'; class Example extends Component { render() { return ( ); } } render(); ``` ## Props * [enabled](#enabled) * [visible](#visible) ## Reference ### enabled Whether the Tab is enabled. | **Type** | **Required** | **Default** | | -------- | ------------ | ----------- | | bool | No | true | ### visible Whether the Tab can be seen. | **Type** | **Required** | **Default** | | -------- | ------------ | ----------- | | bool | No | true |