Browse Source

added missing roomId prop to useEffect docs (#5803)

main
Vivek 2 years ago
committed by GitHub
parent
commit
2f8bd3019e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/content/reference/react/useEffect.md

2
src/content/reference/react/useEffect.md

@ -1382,7 +1382,7 @@ export default function App() {
</button>
</label>
{show && <hr />}
{show && <ChatRoom />}
{show && <ChatRoom roomId={roomId}/>}
</>
);
}

Loading…
Cancel
Save