add link to explain tslint issue with sfc and props type

pull/919/head
Audric Ackermann 5 years ago
parent f2f4b4be70
commit 8066cc0709
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -3,6 +3,8 @@ import React from 'react';
interface ReceivedProps {
text: string;
}
// Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339
type Props = ReceivedProps;
export const PillDivider: React.SFC<Props> = props => {

@ -7,6 +7,7 @@ interface ReceivedProps {
key?: any;
}
// Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339
type Props = ReceivedProps;
export const SessionHtmlRenderer: React.SFC<Props> = ({

Loading…
Cancel
Save