-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathexperiments.ts
35 lines (33 loc) · 955 Bytes
/
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
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: '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,
},
];