| 3 | import { dzcodeLoadingStyles } from "./styles"; |
| 4 | |
| 5 | interface DZCodeLoadingProps { |
| 6 | style?: ImageStyle; |
| 7 | } |
| 8 | |
| 9 | export const DZCodeLoading: FC<DZCodeLoadingProps> = ({ style }: DZCodeLoadingProps) => { |
| 10 | const [rotateAnimValue, setRotateAnimValue] = useState(new Animated.Value(0)); |
nothing calls this directly
no outgoing calls
no test coverage detected