AllenYuan

Untitled

Jun 13th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import { useSelector } from 'react-redux';
  2.  
  3. export const useStrings = () => {
  4. const strings = useSelector((state) => state.app.strings);
  5. return strings;
  6. };
  7.  
  8. export default useStrings;
Advertisement
Add Comment
Please, Sign In to add comment