Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (19 loc) · 1.08 KB

Interview Questions

Instructions

  • Please find relevant code snippets in the ./Questions folder.
  • Code for question 1 is under ./Questions/One etc.
  • Please make use of the existing components/data/functions in the question folder if there are any present.
  • Bonus if you can write tests

Questions

[One] Recreate the UI to the screenshot given below.

  • The data should render into appropriate sections after submitting
  • The filters should filter out the appropriate rows

The objective of this exercise is to see if you can think in React Screenshot

[Two] Debounce the onChange call so that the API does not fire on every keystroke

  • You must use functional component for this
  • You can use a library to debounce the call

Screenshot

[Three] Write an HOC and wrap SensitiveUI with it so that unauthenticated users only see PublicUI

  • As a bonus handle the loading state inside the HOC

Screenshot