Convert Badge component to typescript

This commit is contained in:
Alex Gleason
2022-02-23 15:29:03 -05:00
parent 2757e476b7
commit a6a87f6702

View File

@ -1,7 +1,7 @@
import PropTypes from 'prop-types';
import React from 'react';
const Badge = (props) => (
const Badge = (props: any) => (
<span className={'badge badge--' + props.slug}>{props.title}</span>
);