import React from "react"; import {createGlobalState} from 'react-use' const useGlobalValue = createGlobalState(0); const CompA = () => { const [value, setValue] = useGlobalValue(); return ; }; const CompB = () => { const [value, setValue] = useGlobalValue(); return ; }; export default function App() { const [value] = useGlobalValue(); return (

{value}

); }