react-native-elements / react-native-elements-universe

MIT License
9 stars 6 forks source link

import pointing to index.d.ts with example export #12

Closed rosnk closed 2 years ago

rosnk commented 2 years ago

Explain what you did (Required) tried to import "CircularSlider" but there is no export in installed repository

trying to use "CircularSlider" component

Expected behavior (Required) I should get "CircularSlider" component currently getting undefined component.

I expect to get CircularSlider component which i can use in my expo app.

Describe the bug (Required) import { CircularSlider } from 'react-native-elements-universe'; this statement is pointing to : index..ts which has following content:

import Example from './Example';
export { Example };

looks like wrong export ??

arpitBhalla commented 2 years ago

This component isn't yet released

arpitBhalla commented 2 years ago

Try npm install https://github.com/react-native-elements/react-native-elements-universe#dist

rosnk commented 2 years ago

@arpitBhalla thanks!