There seems to be a minor visual problem.
In WebStorm with TypeScript, the ...rest
argument is displayed across 3 lines.
Here is an example of the code :
import React, { FC } from 'react';
import { View } from 'react-native';
import { MarkerProps } from 'react-native-maps';
export interface ITeddyMarkerDraggable extends MarkerProps {
}
const TeddyMarkerDraggable: FC<ITeddyMarkerDraggable> = ({
props,
...rest,
}) => <View />;
export default TeddyMarkerDraggable;
Additionally, here is an image demonstrating the issue: https://i.sstatic.net/txCYL.png
Could you clarify the purpose of the grey arrows and suggest any potential settings adjustments to address this problem?