7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { useAtomsContext } from "./useAtomsContext";
|
|
|
|
export const useIsPlatform = () => {
|
|
const context = useAtomsContext();
|
|
return Boolean(context?.clientId);
|
|
};
|