ArangoDB-Community / ArangoBnB

16 stars 3 forks source link

Add autocomplete with dummy api call #28

Closed couds closed 3 years ago

couds commented 3 years ago

Create an simple autocomplete component, that will show the possible destinations when the user type

image

cw00dw0rd commented 3 years ago

@lostpebble can you review?

lostpebble commented 3 years ago

All seems to work well for me.

@couds , could you please edit the eslint rules to look like this:

 'prettier/prettier': ['error', { endOfLine: 'auto' }],

And in the .prettierrc file:

"endOfLine": "auto"

These are preventing the App from starting on my side because of different line endings in my IDE (making prettier throw an error is probably a bad idea in any case because this is meant as a demo project, so can maybe change that from error too).

couds commented 3 years ago

Done.