Migrate util, types, state, sticker-creator to ESLint

This commit is contained in:
Sidney Keese
2020-09-14 14:56:35 -07:00
committed by Josh Perez
parent 372aa44e49
commit 2ade4acd52
115 changed files with 647 additions and 448 deletions

View File

@@ -6,7 +6,11 @@ export type Props = MessageMetaProps & {
image: string;
};
export const MessageSticker = ({ image, kind, minutesAgo }: Props) => {
export const MessageSticker: React.ComponentType<Props> = ({
image,
kind,
minutesAgo,
}) => {
return (
<div className={styles.base}>
<img src={image} alt="Sticker" className={styles.image} />