(key: number)
| 20 | }; |
| 21 | |
| 22 | export const createPage = (key: number): CreatePage => { |
| 23 | return { |
| 24 | key: key, |
| 25 | style: { |
| 26 | flex: 1, |
| 27 | backgroundColor: BGCOLOR[key % BGCOLOR.length], |
| 28 | alignItems: 'center', |
| 29 | padding: 20, |
| 30 | }, |
| 31 | imgSource: { uri: IMAGE_URIS[key % BGCOLOR.length] || '' }, |
| 32 | }; |
| 33 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…