5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
|
export const testProps = (testID?: string): { testID?: string; accessibilityLabel?: string } => ({
|
||
|
testID,
|
||
|
accessibilityLabel: testID
|
||
|
});
|