chore: Convert example to TypeScript (#648)

This commit is contained in:
Dylan Vann
2020-03-12 02:27:37 -04:00
committed by GitHub
parent dc3d66e1a0
commit bf55742e5f
40 changed files with 672 additions and 644 deletions
@@ -0,0 +1,13 @@
import React from 'react'
import FeatureText from './FeatureText'
interface BulletTextProps {
text?: string
children?: any
}
const BulletText = ({ text, children }: BulletTextProps) => (
<FeatureText text={`${text || children}`} />
)
export default BulletText