Skip to content

Commit cf2ad0e

Browse files
author
Luke Pearson
committed
sp-disable Removed unnecessary prop typing
1 parent 248ddf1 commit cf2ad0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stories/Input.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface Props {
1010
disableErrorFromComponents?: boolean;
1111
}
1212

13-
const ExampleForm: FunctionComponent<Props> = (props: Props) => {
13+
const ExampleForm: FunctionComponent<Props> = (props) => {
1414
const { disableErrorFromComponents } = props;
1515
const [firstName, setFirstName] = useState<string>('');
1616
const [middleName, setMiddleName] = useState<string>('');

0 commit comments

Comments
 (0)