import React from 'react'; import { Box, Center, Heading, Pressable, useColorModeValue, } from 'native-base'; import { mapping } from '../../config/map'; export function StoryBook({ navigation, name, _box: { lightGrad, darkGrad, ..._box }, _heading, ...props }: any) { const Example = mapping[name].basic.Example; const gradColors = useColorModeValue(lightGrad, darkGrad) || [ 'gray.700', 'white', ]; return ( navigation.navigate('Component | NativeBase', { name: name, }) } >
{name}
); }