import React from 'react'; import { SectionList, Heading, Center } from 'native-base'; export const Example = () => { const data = [ { title: 'Cyan', data: ['cyan.100', 'cyan.200', 'cyan.300', 'cyan.400', 'cyan.500'], }, { title: 'Yellow', data: [ 'yellow.100', 'yellow.200', 'yellow.300', 'yellow.400', 'yellow.500', ], }, { title: 'Violet', data: [ 'violet.100', 'violet.200', 'violet.300', 'violet.400', 'violet.500', ], }, ]; return (