Main public logs

Jump to navigation Jump to search

Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:39, 31 December 2022 Iwiseman talk contribs created page React Redux Toolkit Tips (Created page with "=Introduction= Taken from YouTube https://www.youtube.com/watch?v=NqzdVN2tyvQ =Tip 1= Instead of using <syntaxhighlight lang="js"> const posts = useSelector(state) => state.posts); </syntaxhighlight> We can use <syntaxhighlight lang="js"> // In the component const posts = useSelector(selectAllPosts) // In the Slice export const selectAllPosts = (state) => state.posts; </syntaxhighlight>")