# Text
Displays some text.
```jsx
import React, { Component } from 'react';
import { render, Window, App, Text } from 'proton-native';
class Example extends Component {
render() {
return (
Hello!
);
}
}
render();
```
## Props
* [children](#children)
## Reference
### children
The text to display.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| string | No | '' |