diff --git a/src/components/TextBlock.tsx b/src/components/TextBlock.tsx index ea7899b1c533..68206f218ec9 100644 --- a/src/components/TextBlock.tsx +++ b/src/components/TextBlock.tsx @@ -1,3 +1,8 @@ +/** + * TextBlock component splits a given text into individual words and displays + * each word within a Text component. + */ + import React, {memo, useMemo} from 'react'; import type {StyleProp, TextStyle} from 'react-native'; import Text from './Text';