# Detect raw text outside of Text component
All strings in React Native should be wrapped with a Text component.
## Rule Details
The following patterns are considered warnings:
```js
some text
```
```js
const text = 'some text';
{`${text}`}
```
The following patterns are not considered warnings:
```js
some text
```
```js
const text = 'some text';
{`${text}`}
```
#### This rule has an object option:
- "skip" – allow to skip checking for the array of custom components