socket implementation and multiplayer feature added in frontend

This commit is contained in:
Moon Patel
2023-07-02 14:45:49 +05:30
parent 16326766b7
commit ceb6a6993c
13 changed files with 215 additions and 64 deletions
+17
View File
@@ -0,0 +1,17 @@
import { createContext } from "react";
const AuthContext = createContext();
import React from 'react'
const AuthContextProvider = ({ children }) => {
return (
<AuthContext.Provider value={{
}}>
{children}
</AuthContext.Provider>
)
}
export default auth - context