Skip to content

Commit

Permalink
rename IProps to Props
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaziuk committed Jan 11, 2020
1 parent 6534948 commit 847782c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ra-input-rich-text/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import styles from './styles';

const useStyles = makeStyles(styles, { name: 'RaRichTextInput' });

interface IProps {
interface Props {
label?: string | false;
options?: QuillOptionsStatic;
source: string;
Expand All @@ -44,7 +44,7 @@ interface IProps {
[key: string]: any;
}

const RichTextInput: FunctionComponent<IProps> = props => {
const RichTextInput: FunctionComponent<Props> = props => {
const {
options, // Quill editor options
record,
Expand Down

0 comments on commit 847782c

Please sign in to comment.