mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
16 lines
254 B
JavaScript
16 lines
254 B
JavaScript
|
exports.single = {
|
||
|
func: () => {},
|
||
|
description: 'Test action',
|
||
|
name: 'test',
|
||
|
};
|
||
|
|
||
|
exports.multiple = [{
|
||
|
func: () => {},
|
||
|
description: 'Test action #1',
|
||
|
name: 'test1',
|
||
|
}, {
|
||
|
func: () => {},
|
||
|
description: 'Test action #2',
|
||
|
name: 'test2',
|
||
|
}];
|