A text analyzer that gives the characters and words count as well as offering a character map (how many times a character has been written in the text)
- useCallback hook used to save resources by memoizing the function's body
- createContext used to share data among components easily
- usage of useMemo to call the function only when dependencies change
- itemize function used to extract single character (only letters and numbers) from a text using regex and array ProtoType methods
- useReducer hook used to toggle booleans and display/running components
You can find this project here on my personal portfolio --> lorenzo-viganego.com
--