We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04f806e commit ded7da2Copy full SHA for ded7da2
1 file changed
chat-app/client/src/App.jsx
@@ -4,7 +4,9 @@ import Message from "./components/Message";
4
import "./App.css";
5
6
const App = () => {
7
- const { messages, sendMessage } = useSocket("http://localhost:3000");
+ const { messages, sendMessage } = useSocket(
8
+ "https://craig-dsilva-chat-app-server.hosting.codeyourfuture.io/",
9
+ );
10
const [input, setInput] = useState("");
11
12
const handleSend = () => {
0 commit comments