Skip to content

Commit afd5c8f

Browse files
committed
fix: rename imports
1 parent 716afd2 commit afd5c8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { ScrollView, StyleSheet, Text, View } from 'react-native';
3-
import SocketIO from 'react-native-socket-io';
3+
import SocketIO from 'react-native-socket-io-wrapper';
44
import makeSocketIO from './SocketIO';
55

66
function useSocketIO() {

example/src/SocketIO.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import SocketIO, { SocketIOOptions } from 'react-native-socket-io';
1+
import SocketIO, { SocketIOOptions } from 'react-native-socket-io-wrapper';
22

33
function makeSocketIO(options?: SocketIOOptions) {
44
return new SocketIO('http://127.0.0.1:3000', options);

0 commit comments

Comments
 (0)