Новая система вложений
This commit is contained in:
12
app/providers/TransportProvider/useTransportServer.ts
Normal file
12
app/providers/TransportProvider/useTransportServer.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { useContext } from "react";
|
||||
import { TransportContext } from "./TransportProvider";
|
||||
|
||||
export function useTransportServer() {
|
||||
const context = useContext(TransportContext);
|
||||
if(!context){
|
||||
throw new Error("useTransportServer must be used within a TransportProvider");
|
||||
}
|
||||
const { transportServer } = context;
|
||||
|
||||
return transportServer;
|
||||
}
|
||||
Reference in New Issue
Block a user