mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2026-09-01 14:21:06 +00:00
BREAKING CHANGE: You should upgrade React Native. See https://facebook.github.io/react-native/blog/2019/07/03/version-60
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
import React from 'react'
|
|
import FeatureText from './FeatureText'
|
|
|
|
const BulletText = ({ text, children }) => (
|
|
<FeatureText text={`• ${text || children} •`} />
|
|
)
|
|
|
|
export default BulletText
|