-
Notifications
You must be signed in to change notification settings - Fork 272
/
Copy pathexperiments.ts
47 lines (45 loc) · 1.23 KB
/
experiments.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { AccessibilityScreen } from './screens/Accessibility';
import { PressEvents } from './screens/PressEvents';
import { TextInputEventPropagation } from './screens/TextInputEventPropagation';
import { TextInputEvents } from './screens/TextInputEvents';
import { ScrollViewEvents } from './screens/ScrollViewEvents';
import { FlatListEvents } from './screens/FlatListEvents';
import { SectionListEvents } from './screens/SectionListEvents';
export type Experiment = (typeof experiments)[number];
export const experiments = [
{
key: 'Accessibility',
title: 'Accessibility',
component: AccessibilityScreen,
},
{
key: 'PressEvents',
title: 'Press Events',
component: PressEvents,
},
{
key: 'TextInputEvents',
title: 'TextInput Events',
component: TextInputEvents,
},
{
key: 'TextInputEventPropagation',
title: 'TextInput Event Propagation',
component: TextInputEventPropagation,
},
{
key: 'ScrollViewEvents',
title: 'ScrollView Events',
component: ScrollViewEvents,
},
{
key: 'FlatListEvents',
title: 'FlatList Events',
component: FlatListEvents,
},
{
key: 'SectionListEvents',
title: 'SectionList Events',
component: SectionListEvents,
},
];