Skip to content

Instantly share code, notes, and snippets.

@madflanderz
Created March 7, 2019 09:49
Show Gist options
  • Save madflanderz/4be47541749d60d4d15b5e29fa9e1d30 to your computer and use it in GitHub Desktop.
Save madflanderz/4be47541749d60d4d15b5e29fa9e1d30 to your computer and use it in GitHub Desktop.
TypeScript React Component
import React from 'react'
interface Props {
title: string
}
const StatusIcon = ({ title }: Props) => (
<div>
</div>
)
export default StatusIcon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment